.profile/.forgejo/workflows/lint.yaml
irl 23e1867d62
Some checks failed
Lint / lint (push) Failing after 21s
ci: use runner image
2025-05-27 14:15:51 +01:00

23 lines
400 B
YAML

name: Lint
on:
push:
branches:
- main
jobs:
lint:
runs-on: docker
container:
image: ghcr.io/catthehacker/ubuntu:runner-latest
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"