We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50aa489 commit 0769f5cCopy full SHA for 0769f5c
.github/workflows/ci.yml
@@ -2,12 +2,15 @@ name: CI
2
3
on: [pull_request]
4
5
+env:
6
+ SORBET_RUBY: 3.4
7
+
8
jobs:
9
test:
10
runs-on: ubuntu-latest
11
strategy:
12
matrix:
- ruby-version: [head, 3.4, 3.3, 3.2]
13
+ ruby-version: [head, ${{ env.SORBET_RUBY }}, 3.3, 3.2]
14
fail-fast: false
15
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
16
steps:
@@ -26,6 +29,7 @@ jobs:
26
29
fetch-depth: ${{ env.REPO_FETCH_DEPTH }}
27
30
- uses: ruby/setup-ruby@v1
28
31
with:
32
+ ruby-version: ${{ env.SORBET_RUBY }}
33
bundler-cache: true
34
- name: Sorbet
35
run: bundle exec srb typecheck
0 commit comments