Skip to content
This repository was archived by the owner on Jan 18, 2025. It is now read-only.

Bump golang from 1.23.3-alpine to 1.23.5-alpine #421

Bump golang from 1.23.3-alpine to 1.23.5-alpine

Bump golang from 1.23.3-alpine to 1.23.5-alpine #421

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 ./...