Add support for returning measurement_uid as part of oonimkall API #1559
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs the whole test suite | |
name: alltests | |
on: | |
pull_request: | |
push: | |
branches: | |
- "release/**" | |
- "fullbuild" | |
- "alltestsbuild" | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get GOVERSION content | |
id: goversion | |
run: echo "version=$(cat GOVERSION)" >> "$GITHUB_OUTPUT" | |
- uses: magnetikonline/action-golang-cache@v4 | |
with: | |
go-version: "${{ steps.goversion.outputs.version }}" | |
cache-key-suffix: "-alltests-${{ steps.goversion.outputs.version }}" | |
- run: go test -race -tags shaping ./... |