forked from mailgun/gubernator
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 941 Bytes
/
on-pull-request.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
name: On Pull Request
on:
pull_request:
branches: [ master, main ]
jobs:
test:
name: test
strategy:
matrix:
go-version:
- 1.19.x
- 1.20.x
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Fetch git tags
run: git fetch --tags
- name: Version consistency check
run: ./check-version.sh
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- run: go env
- name: Cache deps
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install deps
run: go mod download
- name: Test
run: go test -v -race -p=1 -count=1