Skip to content

Bump golang from 1.21.6-alpine to 1.22.0-alpine #408

Bump golang from 1.21.6-alpine to 1.22.0-alpine

Bump golang from 1.21.6-alpine to 1.22.0-alpine #408

Workflow file for this run

name: Autoupdate
on: [pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v4
- name: go fmt
run: test -z $(gofmt -l .)
- name: go vet
run: go vet ./...
- name: golint
run: go install golang.org/x/lint/golint@latest && golint ./...
- name: test
run: go test -timeout 10s ./...