Sha256: 0b5889cfd92d6ee3882cbd958611a15f35aea83dcd9cb42fbdb1b2f914f17620
Contents?: true
Size: 916 Bytes
Versions: 6
Compression:
Stored size: 916 Bytes
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: Specs on: pull_request: branches: [] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['3.0', '3.2', 'jruby'] steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: false # runs 'bundle install' and caches installed gems automatically - name: Install gems run: bundle install - name: Run tests run: bundle exec rspec
Version data entries
6 entries across 6 versions & 1 rubygems