Sha256: d0b07b732e971bca5b96050d31e3df7fde30ebe336b8fb5a19d0c3237bd74042
Contents?: true
Size: 588 Bytes
Versions: 10
Compression:
Stored size: 588 Bytes
Contents
name: ci-master on: push: branches: # Trigger only on the main branch to avoid duplicate runs on PR branches - master jobs: rspec: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [2.5, 2.6, 2.7] rails: [5.2, 6.0, 6.1] env: RAILS_VERSION: ${{ matrix.rails }} CI: true steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} # bundler-cache: true -- this messes up some dynamic constants - run: "./spec/bin/run_spec.sh"
Version data entries
10 entries across 10 versions & 1 rubygems