From 40998c3f63d2c17adf1f6bd78e9309525061bb78 Mon Sep 17 00:00:00 2001 From: Elijah Zupancic Date: Mon, 14 Jun 2021 15:04:39 -0700 Subject: [PATCH] ci: add Fossa github workflow --- .github/workflows/fossa.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/fossa.yml diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml new file mode 100644 index 00000000..1e2e91f5 --- /dev/null +++ b/.github/workflows/fossa.yml @@ -0,0 +1,17 @@ +name: License Scanning + +on: + - push + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run FOSSA scan and upload build data + uses: fossa-contrib/fossa-action@v1 + with: + fossa-api-key: ${{ secrets.FOSSA_TOKEN }}