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
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ./... |