mirror of
https://github.com/FiloSottile/age.git
synced 2026-09-03 14:46:58 +00:00
.github/workflows: switch from Travis CI to GitHub Actions
So long, and thanks for all the builds!
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
name: Interoperability tests
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
trigger:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@@ -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