forked from kedacore/keda
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 871 Bytes
/
fossa.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: FOSSA
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
fossa-key: 9e722f2c8904586d61f97f0bf05a99e4 # This is a public key only for pushing, it's safe here
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- uses: actions/setup-go@v4
with:
go-version: "1.20"
- run: go version
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v7
- uses: fossas/fossa-action@main
name: Scanning with FOSSA
with:
api-key: ${{ env.fossa-key }}
branch: ${{ steps.branch-name.outputs.current_branch }}
- uses: fossas/fossa-action@main
name: Executing tests with FOSSA
with:
api-key: ${{ env.fossa-key }}
run-tests: true