2021-02-02 12:05:47 +01:00
|
|
|
name: alltests
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'release/**'
|
|
|
|
schedule:
|
|
|
|
- cron: "0 7 * * */1"
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
2021-03-02 12:08:24 +01:00
|
|
|
go-version: "1.16"
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-03-02 12:08:24 +01:00
|
|
|
- run: go run ./internal/cmd/getresources
|
2021-02-02 15:57:37 +01:00
|
|
|
- run: go test -race -tags shaping ./...
|