Skip to content

Commit

Permalink
Remove Gemfile.lock when running CI on Ruby 3.1 Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vinistock committed Sep 26, 2023
1 parent 56c7727 commit c98c5e1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: Remove Gemfile.lock
if: matrix.os == 'windows-latest' && matrix.ruby == "3.1"
run: rm Gemfile.lock

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit c98c5e1

Please sign in to comment.