.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

View File

@@ -6,4 +6,4 @@ freebsd_12_task:
image: freebsd-12-1-release-amd64
install_script: pkg install -y go
build_script: go build -v ./...
test_script: go test -v ./...
test_script: go test -race ./...

View File

@@ -1,7 +1,5 @@
name: Interoperability tests
on: push
jobs:
trigger:
runs-on: ubuntu-latest

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

View File

@@ -1,5 +0,0 @@
os: linux
arch: arm64
dist: bionic
language: go
go: 1.x