.profile/.forgejo/workflows/lint.yaml
irl 3b62f99653
Some checks failed
Lint / lint (push) Failing after 4s
feat: adds linting
2025-05-27 14:12:17 +01:00

20 lines
329 B
YAML

name: Lint
on:
push:
branches:
- main
jobs:
lint:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Nix
uses: https://guardianproject.dev/actions/install-nix-action@v15
- name: Run just lint
run: nix-shell --run "just lint"