Sha256: 2e4c855834ad0778a06496e4417125f7ba9d33ff0c85c3a4229002dc0c8c75c9
Contents?: true
Size: 806 Bytes
Versions: 8
Compression:
Stored size: 806 Bytes
Contents
name: Verify on: push: branches: - '*' pull_request: branches: - '*' jobs: test: runs-on: ubuntu-18.04 timeout-minutes: 40 strategy: fail-fast: true matrix: ruby: - 2.6 - 2.7 - 3.0.3 - 3.1.1 test_cmd: - bundle exec rspec env: RAILS_ENV: test name: 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
8 entries across 8 versions & 1 rubygems