2022-07-14 13:07:48 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
name: Test
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
go-version: [1.16.x,1.17.x,1.18.x]
|
2022-07-14 13:40:46 +03:00
|
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
2022-07-14 13:07:48 +03:00
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Install staticcheck
|
|
|
|
if: matrix.go-version != '1.16.x'
|
|
|
|
run: go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
|
|
shell: bash
|
|
|
|
- name: Update PATH
|
|
|
|
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
|
|
|
shell: bash
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v1
|
2022-07-14 13:40:46 +03:00
|
|
|
- name: Fmt
|
|
|
|
if: matrix.platform != 'windows-latest' # :(
|
|
|
|
run: "diff <(gofmt -d .) <(printf '')"
|
|
|
|
shell: bash
|
2022-07-14 13:07:48 +03:00
|
|
|
- name: Vet
|
|
|
|
run: go vet ./...
|
|
|
|
#- name: Staticcheck
|
|
|
|
# if: matrix.go-version != '1.16.x'
|
|
|
|
# run: staticcheck ./...
|
|
|
|
- name: Test
|
|
|
|
run: go test -race ./...
|