-
Notifications
You must be signed in to change notification settings - Fork 0
107 lines (87 loc) · 2.32 KB
/
ci.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: CI
on:
push:
branches:
- '*'
tags:
- '*'
permissions: read-all
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
- name: Build
run: |
make
- name: Test
run: |
go test -covermode=count -coverprofile=coverage.out -v ./...
- name: Convert coverage to lcov
uses: jandelgado/[email protected]
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
- name: gosec
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec ./...
- name: golangci-lint
run: |
go install github.com/golangci/golangci-lint/cmd/[email protected]
golangci-lint run --skip-files='.*_test.go'
- name: Archive stuff
uses: actions/[email protected]
with:
name: build-artefacts
path: |
littleauth
coverage.out
sonarcloud:
needs: test
runs-on: ubuntu-latest
if: ${{ github.triggering_actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v3
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Download artefacts
uses: actions/[email protected]
with:
name: build-artefacts
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
build-and-push:
needs: sonarcloud
permissions:
contents: write
runs-on: ubuntu-latest
if: contains(github.ref, 'refs/tags')
steps:
- uses: actions/[email protected]
- name: Download artefacts
uses: actions/[email protected]
with:
name: build-artefacts
- name: Generate SBOM
uses: CycloneDX/gh-gomod-generate-sbom@v2
with:
version: v1
args: mod -licenses -json -output bom.json
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
littleauth
bom.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}