Tack CODE_SIGN_TOOL_PATH in the right place. Clearly I need a break #344
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run linters against codebase | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 # github.com/glebarez/sqlite appears incompatible with 1.24 | |
- run: mkdir -p frontend/dist && touch frontend/dist/.gitkeep | |
- run: go mod download | |
- run: go fmt ./... | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v7 | |
with: | |
version: v2.0.2 | |
skip-cache: true |