Skip to content

Commit ff20319

Browse files
committed
Set up GitHub Actions for type checking
1 parent e52db1c commit ff20319

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Test
1+
name: CI
22

33
on:
44
push:
55

66
jobs:
7-
rspec:
7+
test:
88
runs-on: ubuntu-latest
99

1010
strategy:
@@ -23,3 +23,17 @@ jobs:
2323
bundler-cache: true
2424

2525
- 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

Comments
 (0)