Sha256: 8bd9b8a9c77d10a2e3c2706fa516e52588404077f7caadf2e464b7e2578cfc03
Contents?: true
Size: 622 Bytes
Versions: 13
Compression:
Stored size: 622 Bytes
Contents
# see also https://github.com/whitequark/parser/blob/master/.github/workflows/test.yml name: Rake on: [push] jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest] ruby: ["2.7", "3.0", "3.2", head] test_command: ["bundle exec rake test"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Bundle install run: | bundle config path /home/runner/bundle bundle install bundle update - run: ${{ matrix.test_command }}
Version data entries
13 entries across 13 versions & 9 rubygems