Skip to content

Commit

Permalink
Don't use the Gemfile lock on CI steps
Browse files Browse the repository at this point in the history
This file is only for development.
  • Loading branch information
rafaelfranca committed Jan 9, 2024
1 parent b1479e4 commit 18501f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Expand Up @@ -14,6 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Remove $BUNDLE_GEMFILE.lock
run: rm -f $BUNDLE_GEMFILE.lock

- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rail_inspector.yml
Expand Up @@ -17,6 +17,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Remove $BUNDLE_GEMFILE.lock
run: rm -f $BUNDLE_GEMFILE.lock
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rails-new-docker.yml
Expand Up @@ -15,6 +15,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Remove $BUNDLE_GEMFILE.lock
run: rm -f $BUNDLE_GEMFILE.lock
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 18501f7

Please sign in to comment.