Skip to content

FOSSA

FOSSA #302

Workflow file for this run

name: FOSSA
on:
schedule:
- cron: '0 0 * * *' # At the end of every day
workflow_dispatch:
jobs:
fossa:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Run FOSSA scan
uses: fossas/fossa-action@v1.4.0
with:
debug: true
api-key: ${{ secrets.FOSSA_API_KEY }}
- name: Run FOSSA test
uses: fossas/fossa-action@v1.4.0
with:
debug: true
api-key: ${{ secrets.FOSSA_API_KEY }}
run-tests: true