2022-07-01 12:11:32 +02:00
|
|
|
# Runs the whole test suite
|
2021-02-02 12:05:47 +01:00
|
|
|
name: alltests
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-05-06 19:56:55 +02:00
|
|
|
- "release/**"
|
2022-07-01 12:11:32 +02:00
|
|
|
|
2021-02-02 12:05:47 +01:00
|
|
|
jobs:
|
|
|
|
test:
|
2021-05-06 19:56:55 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-02 12:05:47 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
2022-06-17 20:12:14 +02:00
|
|
|
go-version: "1.18.3"
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-02 15:57:37 +01:00
|
|
|
- run: go test -race -tags shaping ./...
|