mirror of
https://github.com/FiloSottile/age.git
synced 2026-01-03 02:45:15 +00:00
.github/workflows: switch from Travis CI to GitHub Actions
So long, and thanks for all the builds!
This commit is contained in:
@@ -6,4 +6,4 @@ freebsd_12_task:
|
|||||||
image: freebsd-12-1-release-amd64
|
image: freebsd-12-1-release-amd64
|
||||||
install_script: pkg install -y go
|
install_script: pkg install -y go
|
||||||
build_script: go build -v ./...
|
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
|
name: Interoperability tests
|
||||||
|
|
||||||
on: push
|
on: push
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
trigger:
|
trigger:
|
||||||
runs-on: ubuntu-latest
|
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
|
|
||||||
Reference in New Issue
Block a user