d4f530b7ea
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.
16 lines
316 B
YAML
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 ./...
|