Sha256: 4449574fe0afdf67e34abbc73f70bf7a77ccef98effd1160b621aa62442b1420
Contents?: true
Size: 979 Bytes
Versions: 6
Compression:
Stored size: 979 Bytes
Contents
name: Verify on: push: branches: - '*' pull_request: branches: - '*' jobs: test: runs-on: ${{ matrix.os }} timeout-minutes: 40 strategy: fail-fast: true matrix: ruby: - 2.7 - 3.0 - 3.1 os: - ubuntu-20.04 - ubuntu-latest exclude: - { os: ubuntu-latest, ruby: 2.7 } - { os: ubuntu-latest, ruby: 3.0 } test_cmd: - bundle exec rspec env: RAILS_ENV: test name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }} steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: ${{ matrix.test_cmd }} run: | echo "${CMD}" bash -c "${CMD}" env: CMD: ${{ matrix.test_cmd }}
Version data entries
6 entries across 6 versions & 4 rubygems