Files
age/.github/workflows/test.yml
Filippo Valsorda 6593c56e33 .github/workflows: switch from Travis CI to GitHub Actions
So long, and thanks for all the builds!
2020-11-21 01:50:09 +01:00

11 lines
227 B
YAML

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 ./...