We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd6b7b7 commit 18aca5fCopy full SHA for 18aca5f
.github/workflows/fossa.yml
@@ -0,0 +1,29 @@
1
+name: fossa
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ tags:
7
+ - v*
8
+ pull_request:
9
10
11
+ workflow_dispatch: {}
12
+
13
+permissions: {}
14
15
+jobs:
16
+ fossa-scan:
17
+ if: github.repository_owner == 'spinframework' # FOSSA is not intended to run on forks.
18
+ runs-on: ubuntu-latest
19
+ permissions:
20
+ contents: read
21
+ steps:
22
+ - name: "Checkout code"
23
+ uses: actions/checkout@v4
24
25
+ - name: "Run FOSSA Scan"
26
+ uses: fossas/[email protected] # Use a specific version if locking is preferred
27
+ with:
28
+ api-key: ${{ secrets.FOSSA_API_KEY }}
29
+ run-tests: true
0 commit comments