From 0b8d95f2bc0d42981581ea79d2dd8f07eec23af4 Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Sun, 14 Jul 2024 23:00:28 -0500 Subject: [PATCH] chore(ci): add FOSSA workflow --- .fossa.yml | 9 +++++++++ .github/workflows/fossa.yaml | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .fossa.yml create mode 100644 .github/workflows/fossa.yaml diff --git a/.fossa.yml b/.fossa.yml new file mode 100644 index 0000000..5d0e144 --- /dev/null +++ b/.fossa.yml @@ -0,0 +1,9 @@ +version: 3 + +server: https://app.fossa.com + +project: + id: github.com/openfga/intellij-plugin + name: github.com/openfga/intellij-plugin + link: openfga.dev + url: github.com/openfga/intellij-plugin diff --git a/.github/workflows/fossa.yaml b/.github/workflows/fossa.yaml new file mode 100644 index 0000000..b6d7e05 --- /dev/null +++ b/.github/workflows/fossa.yaml @@ -0,0 +1,35 @@ +name: FOSSA + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + fossa: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + + - name: Set up JDK 17 + uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 + with: + java-version: "17" + distribution: "temurin" + + - name: Install dependencies + run: ./gradlew build + + - name: Run FOSSA scan and upload build data + uses: fossas/fossa-action@47ef11b1e1e3812e88dae436ccbd2d0cbd1adab0 # v1.3.3 + with: + api-key: ${{ secrets.FOSSA_API_KEY }} + branch: ${{ github.ref_name }} + + - name: Run FOSSA tests + uses: fossas/fossa-action@47ef11b1e1e3812e88dae436ccbd2d0cbd1adab0 # v1.3.3 + with: + api-key: ${{ secrets.FOSSA_API_KEY }} + run-tests: true