ooni-probe-cli/.github/workflows/generate.yml
Simone Basso d4f530b7ea
chore: use go1.18.3 (#816)
This diff changes all github actions and mk to use go1.18.3.

That's what I am using locally.

Also, both oohttp and oocrypto are on go1.18.3 already.
2022-06-17 20:12:14 +02:00

16 lines
316 B
YAML

# generate verifies that `go generate ./...` is not broken
name: generate
on:
push:
branches:
- "release/**"
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.18.3"
- uses: actions/checkout@v2
- run: go generate ./...