name: CI on: push: branches: - main pull_request: branches: - main jobs: test: strategy: fail-fast: false matrix: ruby: - '2.7' - '3.0' - '3.1' - '3.2' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} - run: bundle exec rake