19 lines
364 B
YAML
19 lines
364 B
YAML
|
name: shorttests
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
branches:
|
||
|
- "master"
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
go: [ "1.14", "1.15" ]
|
||
|
steps:
|
||
|
- uses: actions/setup-go@v1
|
||
|
with:
|
||
|
go-version: "${{ matrix.go }}"
|
||
|
- uses: actions/checkout@v2
|
||
|
- run: go test -short -race -tags shaping ./...
|