We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e52db1c commit ff20319Copy full SHA for ff20319
1 file changed
.github/workflows/test.yml .github/workflows/ci.yml.github/workflows/test.yml renamed to .github/workflows/ci.yml
@@ -1,10 +1,10 @@
1
-name: Test
+name: CI
2
3
on:
4
push:
5
6
jobs:
7
- rspec:
+ test:
8
runs-on: ubuntu-latest
9
10
strategy:
@@ -23,3 +23,17 @@ jobs:
23
bundler-cache: true
24
25
- run: bundle exec rake test
26
+
27
+ steep:
28
+ name: Type check (Steep)
29
+ runs-on: ubuntu-latest
30
31
+ steps:
32
+ - uses: actions/checkout@v4
33
34
+ - uses: ruby/setup-ruby@v1
35
+ with:
36
+ ruby-version: '3.4.4'
37
+ bundler-cache: true
38
39
+ - run: bundle exec steep check
0 commit comments