Skip to content

Fix macOS redirect #146

Fix macOS redirect

Fix macOS redirect #146

Workflow file for this run

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@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
- run: mkdir -p frontend/dist && touch frontend/dist/.gitkeep
- run: go mod download
- run: go fmt ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
skip-cache: true
skip-pkg-cache: true