Enable GitHub Workflows
This commit is contained in:
parent
d39c10ba5e
commit
f5813a9d88
2 changed files with 27 additions and 13 deletions
27
.github/workflows/test.yaml
vendored
Normal file
27
.github/workflows/test.yaml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: test
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows-latest, macos-latest, ubuntu-latest]
|
||||
go: ["1.15", "1.16", "1.17"]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go }}
|
||||
|
||||
- run: go generate ./...
|
||||
- run: git diff --cached --exit-code
|
||||
- run: go test ./... -v -cover -coverprofile coverage.out
|
||||
- run: go test -bench . -benchmem
|
||||
|
||||
- uses: codecov/codecov-action@v1
|
Loading…
Add table
Add a link
Reference in a new issue