-
Notifications
You must be signed in to change notification settings - Fork 9
53 lines (48 loc) · 1.17 KB
/
lint.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
45
46
47
48
49
50
51
52
53
name: Lint
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
repository-projects: read
packages: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
golangci:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.21.3
check-latest: true
- uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout 10m --tests=false --exclude-dirs="e2e"
skip-pkg-cache: true
protobuf:
runs-on: ubuntu-latest
env:
GOPRIVATE: github.com/sedaprotocol/vrf-go
GITHUB_TOKEN: ${{ secrets.PAT }}
steps:
- uses: actions/checkout@v4
- name: Install Buf
uses: bufbuild/buf-setup-action@v1.26.1
- name: Lint Proto
run: make proto-lint
- name: clang-format Check
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: 17
check: true
diff: true
extensions: .proto
path: proto
style: file