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