Skip to content

Commit

Permalink
Use GitHub actions for testing (#246)
Browse files Browse the repository at this point in the history
Use a GitHub action to run test on each push and pull request.
We test across a matrix covering Linux and MacOSX, and Go 1.8 to 1.15.
  • Loading branch information
dsnet committed Nov 23, 2020
1 parent 0a3ecd3 commit ade6b74
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 35 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on: [push, pull_request]
name: Test
jobs:
test:
env:
GOPATH: ${{ github.workspace }}
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
strategy:
matrix:
go-version: [1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
with:
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
- name: Checkout dependencies
run: go get golang.org/x/xerrors
- name: Test
run: go test -v -race ./...
- name: Format
if: matrix.go-version == '1.15.x'
run: diff -u <(echo -n) <(gofmt -d .)
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

0 comments on commit ade6b74

Please sign in to comment.