2023-11-02 10:55:47 -07:00
|
|
|
name: Format
|
2023-04-18 06:00:21 -07:00
|
|
|
|
|
|
|
on:
|
2023-11-03 08:26:26 -07:00
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
2023-04-18 06:00:21 -07:00
|
|
|
|
|
|
|
jobs:
|
2023-11-02 10:55:47 -07:00
|
|
|
format-check:
|
2023-04-18 06:00:21 -07:00
|
|
|
runs-on: ubuntu-latest
|
2023-11-03 08:26:26 -07:00
|
|
|
|
2023-04-18 06:00:21 -07:00
|
|
|
steps:
|
2023-11-03 09:13:04 -07:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-16 15:38:36 -08:00
|
|
|
|
2023-12-16 15:53:08 -08:00
|
|
|
- uses: cachix/install-nix-action@v24
|
2023-12-16 15:38:36 -08:00
|
|
|
|
2023-04-18 06:00:21 -07:00
|
|
|
- name: Run formatter
|
2023-12-16 15:38:36 -08:00
|
|
|
run: |
|
|
|
|
pushd dev/
|
|
|
|
nix fmt
|
|
|
|
popd
|
|
|
|
|
2023-04-18 06:00:21 -07:00
|
|
|
- name: Check for changes
|
|
|
|
run: git diff --color=always --exit-code
|