Skip to content

Commit c1cfb1c

Browse files
committed
ci: install rbs gem before type validation
The previous commit added RBS type signatures and CI validation, but the workflow failed because the rbs gem was not installed. This adds a gem install step before running the validation command.
1 parent 52bd5be commit c1cfb1c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,7 @@ jobs:
3333
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
3434
- name: Run tests
3535
run: bundle exec rake test
36+
- name: Install RBS
37+
run: gem install rbs
3638
- name: Validate RBS types
3739
run: rbs -I sig validate

0 commit comments

Comments
 (0)