Skip to content

Update golang Docker tag to v1.22.2 #286

Update golang Docker tag to v1.22.2

Update golang Docker tag to v1.22.2 #286

Workflow file for this run

name: test
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Go mod tidy check
run: go mod tidy && git diff --exit-code
- name: Get dependencies
run: go get -v -t -d ./...
- name: Execute test
run: make test