# Runs the whole test suite name: alltests on: push: branches: - "release/**" - "fullbuild" - "alltestsbuild" jobs: test: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Get GOVERSION content id: goversion run: echo ::set-output name=version::$(cat GOVERSION) - uses: magnetikonline/action-golang-cache@v2 with: go-version: "${{ steps.goversion.outputs.version }}" cache-key-suffix: "-alltests-${{ steps.goversion.outputs.version }}" - run: go test -race -tags shaping ./...