diff options
| author | kmoe <5575356+kmoe@users.noreply.github.com> | 2022-04-01 12:43:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-01 12:43:39 +0100 |
| commit | 3e304a404bdf4dc230535bcaf0ddc30faf39d756 (patch) | |
| tree | a766909cb6133a55367ddf3144da6232b215be0f /.github | |
| parent | 4fd729cc0730f1ceef451b7485bf5db3274bf1d6 (diff) | |
use Go 1.18 in CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/push.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 423ef28..b9e4346 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -29,6 +29,10 @@ jobs: git config --global core.autocrlf false - name: "Fetch source code" uses: actions/checkout@v2 + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: 1.18 - name: Go test run: | go test ./... @@ -40,6 +44,10 @@ jobs: steps: - name: "Fetch source code" uses: actions/checkout@v2 + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: 1.18 - name: "Check vet" run: | go vet ./... |
