We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b2b70a commit e26955dCopy full SHA for e26955d
1 file changed
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
max-parallel: 1
10
matrix:
11
- ruby: ["3.0", "3.1", "3.4"]
+ ruby: ["3.0", "3.1", "3.4", "4.0"]
12
name: 💎 Ruby ${{ matrix.ruby }}
13
steps:
14
- uses: actions/checkout@v4
@@ -21,10 +21,10 @@ jobs:
21
bundler-cache: true
22
23
- run: bundle exec rake rubocop
24
- if: ${{ matrix.ruby == '3.4' }}
+ if: ${{ matrix.ruby == '3.4' || matrix.ruby == '4.0' }}
25
26
- run: bundle exec srb tc
27
28
29
- run: bundle exec rspec ./spec --require spec_helper
30
env:
0 commit comments