2023-10-20 18:49:54 -04:00
|
|
|
name: fmt check
|
|
|
|
|
2023-12-03 14:36:36 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "**.nix"
|
2023-10-05 16:53:48 -04:00
|
|
|
jobs:
|
|
|
|
check:
|
2023-10-07 16:47:37 -04:00
|
|
|
runs-on: ubuntu-latest
|
2023-10-05 16:53:48 -04:00
|
|
|
steps:
|
2023-10-07 16:53:40 -04:00
|
|
|
- uses: actions/checkout@v3
|
2023-10-05 16:53:48 -04:00
|
|
|
- name: install nix action
|
2023-10-05 18:57:57 -04:00
|
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@v5
|
2023-10-05 16:53:48 -04:00
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
2023-10-07 16:31:29 -04:00
|
|
|
- run: nix run nixpkgs#alejandra -- -c .
|