Skip to content

Migrate from gorilla/mux to gin web framework #150

Migrate from gorilla/mux to gin web framework

Migrate from gorilla/mux to gin web framework #150

Workflow file for this run

name: Code Quality
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
cache: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=5m --out-format=colored-line-number
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true