Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
bundler-cache: false
bundler-cache: true # runs bundle install and caches the gems
- name: Install gems
run: |
bundle install
bundle update solargraph # use the latest version of solargraph
bundle update rbs # use latest available for this Ruby version
Comment on lines 35 to 43
Copy link

Copilot AI Sep 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With bundler-cache: true enabled, the setup-ruby action automatically runs bundle install. The subsequent bundle update commands may conflict with the cached dependencies, potentially causing version inconsistencies. Consider either disabling bundler-cache or restructuring the gem installation to avoid conflicts between cached and updated gems.

Copilot uses AI. Check for mistakes.
- name: Install gem types
run: bundle exec rbs collection install
Expand Down
Loading