-
Notifications
You must be signed in to change notification settings - Fork 5
57 lines (45 loc) · 1.5 KB
/
build.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
54
55
56
57
name: Build and test
on: [push, pull_request]
env:
GOLANGCI_LINT_VERSION: v1.54.2
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
go-version: [stable, oldstable]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v2
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-${{ matrix.go-version }}-go-
- name: Download and check dependencies
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
- name: Install Compose
uses: ndeloof/[email protected]
with:
legacy: true
- name: Install golangci-lint
run: make validate
- name: Run tests
run: make test
env:
TEST_ARGS: "--count=1" # disable go test cache
- name: Display docker-compose logs
if: failure()
run: docker-compose -f script/docker-compose.yml logs