mirror of
https://github.com/FiloSottile/age.git
synced 2026-01-07 12:35:14 +00:00
.github/workflows: switch from Travis CI to GitHub Actions
So long, and thanks for all the builds!
This commit is contained in:
10
.github/workflows/test.yml
vendored
Normal file
10
.github/workflows/test.yml
vendored
Normal 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 ./...
|
||||
Reference in New Issue
Block a user