This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (114 loc) · 2.73 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: "Code Analysis"
on:
push:
tags:
- v*
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 0"
concurrency:
group: ${{ format('{0}-{1}-{2}', github.workflow, github.head_ref, github.ref_name) }}
cancel-in-progress: true
env:
GO: "1.21"
jobs:
codeql:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
queries: security-and-quality
languages: go
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO }}
- name: go fmt
run: make fmt
- name: check for dirty state
run: |
DELTA="$(git diff --numstat)"
if [ -n "${DELTA}" ]
then
echo "${DELTA}"
git diff
exit 1
fi
generate-config:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO }}
- name: generate config
run: make generate-config
- name: check for dirty state
run: |
DELTA="$(git diff --numstat)"
if [ -n "${DELTA}" ]
then
echo "${DELTA}"
git diff
exit 1
fi
vet:
defaults:
run:
shell: bash
strategy:
matrix:
go:
- "1.21"
- "1.20"
os:
- ubuntu-latest
include:
- go: "1.21"
os: macos-latest
- go: "1.21"
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: format for windows
if: matrix.os == 'windows-latest'
run: go fmt ./...
- name: go vet
run: make github-vet
tested:
runs-on: ubuntu-latest
needs: [ CodeQL, fmt, generate-config, vet ]
if: always()
steps:
- name: All tests ok
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Some tests failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1