-
Notifications
You must be signed in to change notification settings - Fork 225
44 lines (41 loc) · 1.14 KB
/
static-analysis.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
name: "go static analysis"
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
static-analysis:
name: "Run Go static analysis"
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423
with:
egress-policy: block
allowed-endpoints: >
github.com:443
api.github.com:443
proxy.golang.org:443
storage.googleapis.com:443
sum.golang.org:443
golang.org:443
*.actions.githubusercontent.com:443
objects.githubusercontent.com:443
go.dev:443
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: 1.18
- uses: dominikh/staticcheck-action@ba605356b4b29a60e87ab9404b712f3461e566dc
with:
version: "2022.1"
install-go: false
working-directory: "./v2"