2019-11-05 13:03:56 +00:00
|
|
|
name: Run tests
|
|
|
|
|
2019-11-28 08:51:49 +00:00
|
|
|
on:
|
2019-11-05 13:03:56 +00:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
2019-11-28 08:51:49 +00:00
|
|
|
- 'go.*'
|
2019-11-05 13:03:56 +00:00
|
|
|
- .github/workflows/test.yaml
|
|
|
|
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
2019-11-28 08:51:49 +00:00
|
|
|
- 'go.*'
|
2019-11-05 13:03:56 +00:00
|
|
|
- .github/workflows/test.yaml
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Go 1.13
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: 1.13
|
|
|
|
id: go
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Run tests
|
|
|
|
run: go test ./...
|