Skip to content
Closed
Changes from all commits
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
6 changes: 6 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ jobs:
if: ${{ ! contains(matrix.job, 'typecheck_test') }}
run: |
bundle config set without 'typecheck_test'
- name: Set bundle path to avoid permission issues
run: |
echo "BUNDLE_PATH=vendor/bundle" >> $GITHUB_ENV
- name: bin/setup
run: |
bin/setup
Expand Down Expand Up @@ -102,6 +105,9 @@ jobs:
if: ${{ contains(matrix.ruby, 'head') }}
run: |
bundle config set force_ruby_platform true
- name: Set bundle path to avoid permission issues
run: |
echo "BUNDLE_PATH=vendor/bundle" >> $GITHUB_ENV
- name: bin/setup
run: |
bin/setup
Expand Down
Loading