Sha256: a5ee2b420631d4335264b7a211cc3ddb28fcd1050629679dbbd46ce227618c63
Contents?: true
Size: 578 Bytes
Versions: 1
Compression:
Stored size: 578 Bytes
Contents
name: CI on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['3.0', '3.3'] gemfile: ['Gemfile', 'Gemfile_rails71'] exclude: # Rails 7.2 requires Ruby 3.1+ - ruby-version: '3.0' gemfile: 'Gemfile' steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Run tests run: ./script/test ${{matrix.gemfile}}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cypress-rails-0.8.0.rc1 | .github/workflows/main.yml |