-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (66 loc) · 1.64 KB
/
Copy pathci.yml
File metadata and controls
71 lines (66 loc) · 1.64 KB
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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- run: make coverage
- name: Check coverage threshold
run: |
COVERAGE=$(go tool cover -func=coverage.out | grep '^total:' | awk '{print $3}' | tr -d '%')
echo "Total coverage: ${COVERAGE}%"
if [ "$(echo "$COVERAGE < 70" | bc -l)" -eq 1 ]; then
echo "::error::Coverage ${COVERAGE}% is below the 70% threshold"
exit 1
fi
- uses: actions/upload-artifact@v7
if: always()
with:
name: coverage-report
path: cli/coverage.out
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- run: make tools
- run: make lint
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [test, lint]
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- run: make build-all