Skip to content

Move CLI tool inside October itself #263

Move CLI tool inside October itself

Move CLI tool inside October itself #263

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@v4
- uses: actions/setup-go@v4
with:
go-version: 1.21
- 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.55.2
skip-cache: true
skip-pkg-cache: true