Enable GitHub Workflows

pull/141/head
Yasuhiro Matsumoto 2021-11-04 23:04:38 +09:00
parent d39c10ba5e
commit f5813a9d88
No known key found for this signature in database
GPG Key ID: 622DE34DC490584B
2 changed files with 27 additions and 13 deletions

27
.github/workflows/test.yaml vendored 100644
View 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

View File

@ -1,13 +0,0 @@
language: go
sudo: false
go:
- tip
before_install:
- go get -t -v ./...
script:
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)