.github/workflows/test.yml in countless-1.0.0 vs .github/workflows/test.yml in countless-1.1.0
- old
+ new
@@ -11,34 +11,34 @@
cancel-in-progress: true
jobs:
test:
name: 'Test the gem (Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails }})'
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
- ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
- rails: [5.2, '6.0', 6.1, '7.0']
+ ruby: ['2.5', '2.6', '2.7', '3.0', '3.1']
+ rails: ['5.2', '6.0', '6.1', '7.0']
exclude:
# Rails 7.0 requires Ruby >=2.7
- - ruby: 2.5
+ - ruby: '2.5'
rails: '7.0'
- - ruby: 2.6
+ - ruby: '2.6'
rails: '7.0'
env:
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install the correct Ruby version
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- rubygems: latest
+ rubygems: '3.3.26'
- name: Prepare the virtual environment
uses: hausgold/actions/ci@master
with:
clone_token: '${{ secrets.CLONE_TOKEN }}'
@@ -51,10 +51,10 @@
- name: Upload the code coverage report
run: coverage
trigger-docs:
name: Trigger the documentation upload
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
timeout-minutes: 2
needs: test
if: github.ref == 'refs/heads/master'
steps:
- name: Prepare the virtual environment