-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (45 loc) · 1.04 KB
/
pr.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
---
name: CI
on:
pull_request:
branches:
- main
- 'v*'
env:
MODULES: "./docker/... ./e2e/... ./mailbox/... ./tx/..."
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.work
cache-dependency-path: '*/go.sum'
check-latest: true
- name: Test
run: make test
golangci:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.work
cache-dependency-path: '*/go.sum'
check-latest: true
- name: golangci-lint
uses: golangci/[email protected]
with:
version: latest
args: '--config=.golangci.yaml -v $MODULES'