2021-02-02 12:05:47 +01:00
|
|
|
name: shorttests
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-03-02 12:08:24 +01:00
|
|
|
go: [ "1.16" ]
|
2021-02-02 12:05:47 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: "${{ matrix.go }}"
|
|
|
|
- uses: actions/checkout@v2
|
2021-03-02 12:08:24 +01:00
|
|
|
- run: go run ./internal/cmd/getresources
|
2021-02-02 12:05:47 +01:00
|
|
|
- run: go test -short -race -tags shaping ./...
|