Skip to content

fix: set the correct go version #4

fix: set the correct go version

fix: set the correct go version #4

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Run go fmt
run: go fmt ./...
- name: Run go vet
run: go vet ./...