-
Notifications
You must be signed in to change notification settings - Fork 42
39 lines (37 loc) · 1.29 KB
/
test.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
name: Tests and Code coverage
on:
pull_request:
push:
branches:
- development
- master
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Generate coverage report
run: |
make test-coverage
filepaths+=" $(find ./ -type f -name '*.go' -exec grep -l 'DO NOT COVER' {} \;)"
filepaths+=" $(find ./ -type f -name '*.pb.go')"
filepaths+=" $(find ./ -type f -name '*.pb.gw.go')"
filepaths+=" $(find ./ -type f -path '*/client/cli/*')"
filepaths+=" $(find ./ -type f -path '*/expected/*')"
filepaths+=" $(find ./ -type f -path '*/services/*')"
for filepath in ${filepaths}; do
filepath=$(echo ${filepath} | sed 's@^[email protected]/sentinel-official/hub/v[0-9]*@g')
echo "Excluding file ${filepath} from coverage report..."
sed -i "/$(echo ${filepath} | sed 's@/@\\/@g')/d" ./coverage.txt
done
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}