2 changed files with 23 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||||||
|
name: Tests |
||||||
|
|
||||||
|
on: |
||||||
|
push: |
||||||
|
branches: |
||||||
|
- master |
||||||
|
pull_request: |
||||||
|
branches: master |
||||||
|
|
||||||
|
jobs: |
||||||
|
test: |
||||||
|
runs-on: ubuntu-latest |
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v2 |
||||||
|
|
||||||
|
- name: Install go |
||||||
|
uses: actions/setup-go@v2 |
||||||
|
with: |
||||||
|
go-version: '1.14.x' |
||||||
|
|
||||||
|
- name: Run tests |
||||||
|
run: go test ./... |
Loading…
Reference in new issue