Skip to content

Remove double call to flepath.Dir in getGitRepositorySubdir (#180) #470

Remove double call to flepath.Dir in getGitRepositorySubdir (#180)

Remove double call to flepath.Dir in getGitRepositorySubdir (#180) #470

Workflow file for this run

name: 🥸 Lint
on:
push: { branches: [main] }
pull_request: { branches: [main] }
jobs:
lint:
name: Lint the code
runs-on: ubuntu-latest
container: golang:1.19
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Check formatting using gofmt
run: gofmt -s -l -d .
- name: Check for suspicious constructs using "go vet"
run: go vet ./...
- name: Lint the code using "golint"
run: go install golang.org/x/lint/golint@latest && golint -set_exit_status ./...
- name: Run staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest && staticcheck ./...