-
Notifications
You must be signed in to change notification settings - Fork 5
40 lines (37 loc) · 1020 Bytes
/
codecov.yaml
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
name: codecov
on:
pull_request_target:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: backend/go.mod
cache-dependency-path: backend/go.sum
- name: Build assets
run: |
set -e
make build-backend-assets
- name: Test
run: |
set -e
make test-backend
- name: Upload Report to Codecov
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
with:
file: ./backend/coverage.out
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true