Sha256: b57214e4f6705c50d12c45bfb1e866277e3c9e5ca5e364d8f32ca2af2167cc3a
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: - '3.0.5' - '3.1.4' - '3.2.2' activerecord: - '6.1.0' - '7.0.0' - '7.1.0' env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile services: postgres: image: postgres:12.4 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: table_saw_test ports: - 5432:5432 # needed because the postgres container does not provide a healthcheck options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Install PostgreSQL client run: | sudo apt-get -yqq install libpq-dev - name: Run tests with RSpec uses: paambaati/codeclimate-action@v2.7.5 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: coverageCommand: bundle exec rspec debug: false
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
table_saw-3.1.0 | .github/workflows/ruby.yml |