Skip to content

Commit

Permalink
chore(ci): added fossa license check
Browse files Browse the repository at this point in the history
Signed-off-by: ptx96 <[email protected]>
  • Loading branch information
ptx96 committed Sep 28, 2023
1 parent 29d4652 commit d9d85bc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: FOSSA

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]

jobs:
fossa-scan:
runs-on: ubuntu-20.04
steps:
- name: "Checkout Code"
uses: actions/checkout@v3

- name: "Run FOSSA Scan"
uses: fossas/[email protected]
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
container: ubuntu:20.04

- name: "Run FOSSA Test"
uses: fossas/[email protected]
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
container: ubuntu:20.04
run-tests: true

0 comments on commit d9d85bc

Please sign in to comment.