CI Workflow #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file was generated on 2024-02-23T14:21:31+00:00 from the rspec-dev repo. | |
# DO NOT modify it by hand as your changes will get lost the next time it is generated. | |
name: Ruby Warrior CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Ruby ${{ matrix.ruby }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
ruby: | |
- '3.3' | |
- '3.2' | |
- '3.1' | |
- '3.0' | |
- '2.7' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: bundle exec rake |