Skip to content

Commit

Permalink
Added CI checks
Browse files Browse the repository at this point in the history
Signed-off-by: Hugo McNally <[email protected]>
  • Loading branch information
HU90m committed Dec 14, 2023
1 parent ca5d5a4 commit 4565594
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Quality

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3

- name: Install Nix
uses: cachix/install-nix-action@v24

- name: Nix Format Check
run: nix fmt -- . --check

- name: Nix Syntax Check
run: nix flake check

0 comments on commit 4565594

Please sign in to comment.