We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f66733b commit b514f0fCopy full SHA for b514f0f
.github/workflows/ci.yml
@@ -5,7 +5,7 @@ jobs:
5
name: 'Test Suite'
6
strategy:
7
matrix:
8
- ruby: [2.7.6, 3.0.4, 3.1.2]
+ ruby: [3.2.8, 3.3.8, 3.4.4]
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v2
@@ -26,11 +26,11 @@ jobs:
26
27
- uses: ruby/setup-ruby@v1
28
with:
29
- ruby-version: 2.7.0
+ ruby-version: 3.2.8
30
- uses: actions/cache@v1
31
32
path: vendor/bundle
33
- key: bundle-2.7.0-${{ hashFiles('**/*.gemspec') }}
34
- restore-keys: bundle-2.7.0
+ key: bundle-3.2.8-${{ hashFiles('**/*.gemspec') }}
+ restore-keys: bundle-3.2.8
35
- run: bundle install --jobs 4 --retry 3 --path vendor/bundle
36
- run: bundle exec rubocop
0 commit comments