cleanup: define required Go version just once (#861)

See https://github.com/ooni/probe/issues/2217
This commit is contained in:
Simone Basso 2022-08-17 11:39:38 +02:00 committed by GitHub
commit 3cc2ce0b81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 169 additions and 57 deletions

View file

@ -9,8 +9,14 @@ 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: actions/setup-go@v1
with:
go-version: "1.18.3"
- uses: actions/checkout@v2
go-version: "${{ steps.goversion.outputs.version }}"
- run: go test -race -tags shaping ./...