2024-03-16 13:37:05 -05:00
|
|
|
name: Check Formatting of Files
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Check-Formatting:
|
|
|
|
runs-on: default
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Check formatting
|
2024-03-20 14:13:44 -05:00
|
|
|
run: |
|
|
|
|
nix --experimental-features "flakes nix-command" flake check
|