pkger/.github/workflows/tests.yml

26 lines
504 B
YAML
Raw Normal View History

2019-11-21 05:50:35 +03:00
name: Tests
on: [push]
jobs:
tests:
name: ${{matrix.os}} Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Test
2019-11-21 06:02:20 +03:00
run: |
2019-11-21 19:29:00 +03:00
go mod download
2019-11-21 06:02:20 +03:00
go mod tidy -v
go test -v -race ./...