-
Notifications
You must be signed in to change notification settings - Fork 5
35 lines (29 loc) · 967 Bytes
/
tests.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
name: Tests
on: [push, pull_request]
env:
GOVERSION: "1.21"
jobs:
test:
name: Check code quality and run tests
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{env.GOVERSION}}
- name: Check out code
uses: actions/checkout@v4
- name: Run gofmt
run: test -z "$(gofmt -s -d *.go 2>&1)"
- name: Run golint
run: go install golang.org/x/lint/golint@latest && golint -set_exit_status
- name: Run go vet
run: go vet
- name: Run tests
run: go test -v -coverprofile=coverage.out -covermode=count
- name: Report coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: go install github.com/mattn/goveralls@latest && goveralls -coverprofile=coverage.out -service=github
continue-on-error: true