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
358 B
YAML
16 lines
358 B
YAML
# qawebconnectivity runs QA checks for the webconnectivity experiment
|
|
name: "qawebconnectivity"
|
|
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: ./QA/rundocker.bash "webconnectivity"
|