Skip to content

Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 #60

Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0

Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 #60

Workflow file for this run

name: "Checks"
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: "Build and test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Run unit tests
run: go test -v ./...
- name: Build binaries
run: go install ./cmd/...
precommit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- uses: j178/prek-action@v2.0.4
with:
extra-args: --all-files --stage=manual
- uses: golangci/golangci-lint-action@v9.2.0
with:
version: v2.11.3
- name: generate command strings
run: go generate ./... && git diff --exit-code