Skip to content

Commit

Permalink
ci: add nix flake check action
Browse files Browse the repository at this point in the history
  • Loading branch information
Dich0tomy committed Jul 14, 2024
1 parent 5b3f7b2 commit eefe94d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/nix-flake-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Flake check

on:
pull_request:
push:
workflow_call:

jobs:
nix-flake-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@v10
- run: nix flake check -L
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

# Meta
!LICENSE
!TODO.md

# Nix
!nix/
Expand Down
7 changes: 7 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# TODO

- [x] Add testing and linting to CI
- [ ] Add iter spec
- [ ] Add basic technical spec
- [ ] Create the module system based on the spec (+ tests)
- [ ] Create the first module (preamble) (+ tests)

0 comments on commit eefe94d

Please sign in to comment.