Skip to content

minor(deps): update module github.com/go-chi/chi/v5 to v5.1.0 #288

minor(deps): update module github.com/go-chi/chi/v5 to v5.1.0

minor(deps): update module github.com/go-chi/chi/v5 to v5.1.0 #288

Workflow file for this run

---
name: general
"on":
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: read
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@v4
- name: Setup golang
id: golang
uses: actions/setup-go@v5
with:
go-version: ^1.21.0
- name: Run generate
id: generate
run: make generate
- name: Run vet
id: vet
run: make vet
- name: Run staticcheck
id: staticcheck
run: make staticcheck
- name: Run lint
id: lint
run: make lint
- name: Run build
id: build
run: make build
- name: Run test
id: test
run: make test
- name: Coverage report
id: codacy
if: github.event_name != 'pull_request'
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.out
force-coverage-parser: go
...