Skip to content

Commit

Permalink
feat(ci): add fossa scan
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Sep 30, 2024
1 parent e4add1b commit cc20556
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright © Michal Čihař <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later

name: FOSSA

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

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

- name: Run FOSSA Scan
uses: fossas/[email protected]
with:
api-key: ${{secrets.fossaApiKey}}

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

0 comments on commit cc20556

Please sign in to comment.