mirror of
https://github.com/FiloSottile/age.git
synced 2026-03-11 08:55:41 +00:00
.github/workflows: switch from Travis CI to GitHub Actions
So long, and thanks for all the builds!
This commit is contained in:
parent
31500bfa2f
commit
6593c56e33
4 changed files with 11 additions and 8 deletions
|
|
@ -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 ./...
|
||||
|
|
|
|||
2
.github/workflows/interop.yml
vendored
2
.github/workflows/interop.yml
vendored
|
|
@ -1,7 +1,5 @@
|
|||
name: Interoperability tests
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
trigger:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
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 ./...
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
os: linux
|
||||
arch: arm64
|
||||
dist: bionic
|
||||
language: go
|
||||
go: 1.x
|
||||
Loading…
Reference in a new issue