Skip to content

Commit

Permalink
Adding fossa license check
Browse files Browse the repository at this point in the history
  • Loading branch information
kigster committed Jun 30, 2024
1 parent 5d8fb4f commit 916882d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: License

on:
push: { branches: [master] }

jobs:
fossa-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Copy Gemfile
run: cp Gemfile.puma-v6 Gemfile

- uses: fossas/fossa-action@main # Use a specific version if locking is preferred
with:
api-key: ${{secrets.FOSSA_API_KEY}}
run-tests: false

0 comments on commit 916882d

Please sign in to comment.