Sha256: cac36c77acb3d14e51dcc5b715eb7a38d8e32a5da085770acec9db37809381a7
Contents?: true
Size: 689 Bytes
Versions: 8
Compression:
Stored size: 689 Bytes
Contents
name: CI on: push jobs: test: name: Ruby ${{ matrix.ruby }} on ubuntu-latest runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'ruby-head', 'jruby-9.4.8.0', 'truffleruby-22.3.1'] # Windows on macOS builds started failing, so they are disabled for now # platform: [windows-2019, macOS-10.14, ubuntu-18.04] # exclude: # ... steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run test suite run: bundle exec rake test
Version data entries
8 entries across 8 versions & 1 rubygems