-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (48 loc) · 1.03 KB
/
on_push.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
name: on push
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
paths-ignore:
- README.md
- .github/*
- docs/*
env:
GIT_USERNAME: '${{ github.actor }}'
GIT_EMAIL: [email protected]
PA_TOKEN: '${{ secrets.GHA_PAT }}'
jobs:
lint:
permissions:
contents: read
id-token: write
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
go-version: 1.21.5
cache: false
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
install-mode: goinstall
skip-pkg-cache: true
test:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.21.5
- name: Test
run: go test ./...