Skip to content

Improve user facing error massage when the stack is not found #483

Improve user facing error massage when the stack is not found

Improve user facing error massage when the stack is not found #483

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.21
steps:
- name: Check out repository code
uses: actions/checkout@v3
- 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: 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 ./...