-
Notifications
You must be signed in to change notification settings - Fork 547
46 lines (39 loc) · 938 Bytes
/
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
40
41
42
43
44
45
name: Test
on:
pull_request:
push:
paths-ignore:
- '**.md'
branches:
- main
- release/*
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/*.go
go.mod
go.sum
**/testdata/**
- uses: actions/setup-go@v4
if: env.GIT_DIFF
with:
go-version: '1.21'
cache: true
cache-dependency-path: go.sum
- run: ./scripts/test-coverage
if: env.GIT_DIFF
- name: Upload coverage to Codecov
uses: codecov/[email protected]
if: env.GIT_DIFF
with:
file: ./coverage.txt
fail_ci_if_error: true
verbose: true