Skip to content

feat: add subflake for development & testing #53

feat: add subflake for development & testing

feat: add subflake for development & testing #53

Workflow file for this run

name: Format
on:
push:
branches: [main]
pull_request:
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- name: Run formatter
run: |
pushd dev/
nix fmt
popd
- name: Check for changes
run: git diff --color=always --exit-code