-
Notifications
You must be signed in to change notification settings - Fork 18
50 lines (40 loc) · 1020 Bytes
/
verify.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
name: Verify
on:
push:
pull_request:
paths-ignore:
- "**.md"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-and-lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install golangci-lint
run: |
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.0
- name: Verify
run: make verify
- name: Test
run: make test
- name: Codecov report
run: bash <(curl -s https://codecov.io/bash)
trivy:
permissions:
contents: read
security-events: write
uses: "./.github/workflows/common-trivy.yaml"
with:
upload-to-github-security-tab: true
codeql:
permissions:
contents: read
security-events: write
uses: "./.github/workflows/common-codeql.yaml"