From faaef0ea0c8d03e6a37636f6dbc4fcb07a3d1d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 27 Oct 2023 14:20:11 +0000 Subject: [PATCH] Remove Gemfile.locks on CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c112fa2..239141c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Remove Gemfile lock + run: | + rm $BUNDLE_GEMFILE.lock + - name: Install Ruby uses: ruby/setup-ruby@v1 with: