Skip to content

FEAT: Implement build command #7

FEAT: Implement build command

FEAT: Implement build command #7

Workflow file for this run

---
name: Compliance Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup workspace
uses: ./.github/actions/setup-workspace
- name: Install linters
run: |
pip install --upgrade pip
pip install pre-commit==3.5.0
- name: Install dependencies
run: |
just tidy
go install golang.org/x/tools/cmd/goimports@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
- name: Lint
run: pre-commit run --all-files