-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (72 loc) · 2.13 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
name: CI
on:
workflow_dispatch:
inputs:
debug_ssh:
description: "Enable SSH debug with tmate, see https://github.com/marketplace/actions/debugging-with-tmate"
required: false
type: boolean
default: false
pull_request:
push:
branches:
- main
schedule:
- cron: "0 0 * * 1" # Each Monday
permissions:
contents: read
checks: write # allow write access to allow the golangci/golangci-lint-action to annotate code in the PR
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: actions/[email protected]
with:
go-version: "1.23.4" # update together with dev.dockerfile
- name: Debug with tmate SSH if enabled
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_ssh }}
uses: mxschmitt/[email protected]
- run: make test-cover
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-latest-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: "1.23.4" # update together with dev.dockerfile
- run: make test-latest-deps
test22:
name: "test go 1.22"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: "1.22"
- run: make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: "1.23.4" # update together with dev.dockerfile
- uses: golangci/[email protected]
with:
version: "v1.63.4" # update together with dev.dockerfile
check-tidy:
name: go mod tidy
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: "1.23.4" # update together with dev.dockerfile
- run: make check-tidy