ci: added nixfmt and statix #25

Merged
AxelSilverdew merged 3 commits from main into main 2024-05-05 14:17:37 +00:00
Showing only changes of commit 8db15c78d7 - Show all commits

26
.github/workflows/code_check.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Code Check
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
lint:
name: Run nixfmt and statix
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v26
- name: Install nixfmt and statix
run: |
nix profile install nixpkgs#nixfmt-rfc-style nixpkgs#statix
- name: Run nixfmt
run: |
nixfmt --check ./**/*.nix
- name: Run statix
run: |
statix check