16 lines
310 B
YAML
16 lines
310 B
YAML
# alltests runs the whole test suite
|
|
name: alltests
|
|
on:
|
|
push:
|
|
branches:
|
|
- "release/**"
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "1.17.9"
|
|
- uses: actions/checkout@v2
|
|
- run: go test -race -tags shaping ./...
|