From 11f6c0f5e66f3207cba212df6662f50a2f7beee0 Mon Sep 17 00:00:00 2001 From: Vinicius Stock Date: Tue, 26 Sep 2023 16:06:57 -0400 Subject: [PATCH] Remove Gemfile.lock when running CI on Ruby 3.1 Windows (#163) --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74ff1982..d0434ae3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: