Skip to content

Bump packages, bump Alpine #200

Bump packages, bump Alpine

Bump packages, bump Alpine #200

Workflow file for this run

name: Linting
on: { push: { branches-ignore: [main, production] } }
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linting:
name: 🤓 Lint the code
runs-on: ubuntu-latest
container: golang:1.21
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Check formatting using gofmt
run: gofmt -s -l -d
- name: Check for suspicious constructs using "go vet"
run: go vet ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4