Skip to content

Remove milestone documentation (#229) #577

Remove milestone documentation (#229)

Remove milestone documentation (#229) #577

Workflow file for this run

name: 🥸 Lint
on:
push: { branches: [main] }
pull_request: { branches: [main] }
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Lint the code
runs-on: ubuntu-latest
container: golang:1.22
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Mark source directory as safe.
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- 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@v6
with:
args: --verbose