-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (50 loc) · 1.36 KB
/
test.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
name: Test
on: [push, pull_request]
jobs:
format:
name: Format (gofmt)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.17'
- name: gofmt
run: test -z $(gofmt -l .) || (gofmt -d . && exit 1)
lint:
name: Lint (golangci-lint)
runs-on: ubuntu-latest
needs: [format]
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.17'
- name: golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.35.2
CGO_ENABLED=0 golangci-lint run -v ./...
test:
name: Tests (go test)
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.17'
- name: Install inkscape
run: |
sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt update
sudo apt install -y inkscape
- name: go test
run: go test -timeout 20s -race ./...
build:
name: Build (Docker)
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@master
- name: Run Docker Build
run: docker build -t battlesnakeofficial/exporter .