Skip to content

Commit

Permalink
Run bundle install before license check
Browse files Browse the repository at this point in the history
  • Loading branch information
kigster committed Jun 30, 2024
1 parent b9b5fab commit 6f3e33f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@ jobs:
- uses: actions/checkout@v3

- name: Copy Gemfile
run: cp Gemfile.puma-v6 Gemfile
run: |
cp Gemfile.puma-v6 Gemfile
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true # runs 'bun

- name: Bundle Install
run: bundle check || bundle install

- uses: fossas/fossa-action@main # Use a specific version if locking is preferred
with:
Expand Down

0 comments on commit 6f3e33f

Please sign in to comment.