2025-05-27 14:12:17 +01:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: docker
|
|
|
|
|
2025-05-27 14:14:38 +01:00
|
|
|
container:
|
|
|
|
image: ghcr.io/catthehacker/ubuntu:act-latest
|
|
|
|
|
2025-05-27 14:12:17 +01:00
|
|
|
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"
|