.github/workflows/rspec.yml in rspec-graphql_matchers-1.3.1 vs .github/workflows/rspec.yml in rspec-graphql_matchers-1.4.0

- old
+ new

@@ -1,20 +1,20 @@ name: RSpec # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch -on: [ push, pull_request ] +on: [push, pull_request] jobs: # This workflow contains a single job "rspec" rspec: # The type of runner that the job will run on runs-on: ubuntu-latest strategy: matrix: - ruby_version: [ 2.6, 2.7, 3.0 ] + ruby_version: [2.6, 2.7, 3.0, 3.1, 3.2] # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -34,8 +34,8 @@ with: path: vendor/bundle key: ${{ runner.os }}-${{ matrix.ruby_version }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-${{ matrix.ruby_version }}-gems- - + - name: Run RSpec run: bundle exec rspec