.github/workflows/checks.yaml in regio-0.3.4 vs .github/workflows/checks.yaml in regio-0.3.5
- old
+ new
@@ -12,13 +12,13 @@
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/ruby_${{matrix.ruby}}.gemfile
strategy:
fail-fast: false
matrix:
- ruby: ['2.4', '2.5', '2.6']
+ ruby: ['2.4', '2.5', '2.6', '2.7']
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Test with RSpec
@@ -28,23 +28,23 @@
runs-on: ubuntu-latest
needs: rubocop
strategy:
fail-fast: false
matrix:
- ruby: ['2.6', '2.7', '3.0', '3.1', head]
+ ruby: ['3.0', '3.1', '3.2']
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Test with RSpec
run: bundle exec rspec
rubocop:
name: RuboCop
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.3
bundler-cache: true
- name: Check with RuboCop