.github/workflows: switch from Travis CI to GitHub Actions

So long, and thanks for all the builds!
This commit is contained in:
Filippo Valsorda
2020-11-21 01:50:09 +01:00
committed by GitHub
parent 31500bfa2f
commit 6593c56e33
4 changed files with 11 additions and 8 deletions

10
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,10 @@
name: Go tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with: { go-version: 1.x }
- uses: actions/checkout@v2
- run: go test -race ./...