mirror of https://github.com/markbates/pkger.git
23 lines
447 B
YAML
23 lines
447 B
YAML
|
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
|
||
|
run: go test -v -race ./...
|