-
Notifications
You must be signed in to change notification settings - Fork 6
97 lines (80 loc) · 2.33 KB
/
checks.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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: checks
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install asdf
uses: asdf-vm/actions/[email protected]
with:
asdf_branch: v0.11.2
- name: Gather tool versions
uses: endorama/asdf-parse-tool-versions@v1
id: versions
- uses: actions/setup-go@v4
with:
go-version: ${{ fromJson(steps.versions.outputs.tools).golang }}
check-latest: false
cache: true
- name: Run unit tests
run: make test
env:
# This env variable is set automatically by endorama/asdf-parse-tool-versions
# and mockery is picking it up.
MOCKERY_VERSION: ""
- name: Annotate tests
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json
lint:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Gather tool versions
uses: endorama/asdf-parse-tool-versions@v1
id: versions
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
fail_on_error: true
reporter: github-pr-review
go_version: v${{ fromJson(steps.versions.outputs.tools).golang }}
golangci_lint_version: v${{ fromJson(steps.versions.outputs.tools).golangci-lint }}
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Gather tool versions
uses: endorama/asdf-parse-tool-versions@v1
id: versions
- uses: actions/setup-go@v4
with:
go-version: ${{ fromJson(steps.versions.outputs.tools).golang }}
check-latest: false
cache: true
# - uses: mfinelli/setup-shfmt@v2
# with:
# shfmt-version: ${{ fromJson(steps.versions.outputs.tools).shfmt }}
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --show-diff-on-failure
env:
SKIP: no-commit-to-branch,golangci-lint