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.
2 parents d5c7482 + a038f22 commit 07f1fdcCopy full SHA for 07f1fdc
.github/workflows/build.yml
@@ -29,6 +29,12 @@ jobs:
29
- uses: actions/checkout@v4
30
with:
31
fetch-depth: 0
32
+ - uses: ruby/setup-ruby@v1
33
+ with:
34
+ ruby-version: "3.2"
35
+ bundler-cache: true
36
+ - run: ./bin/setup
37
+ - run: rake check:type
38
- run: sudo apt-get install clang-format
39
- run: ./tools/clang-format-diff.sh
40
- run: rake check:bindgen
tasks/check.rake
@@ -30,4 +30,8 @@ namespace :check do
desc "Check wit-bindgen'ed sources are up-to-date"
task bindgen: %i[bindgen_c bindgen_js]
+
+ task :type do
+ sh "bundle exec steep check"
+ end
end
0 commit comments