Skip to content

Commit

Permalink
Check Nix flake workflow (#46)
Browse files Browse the repository at this point in the history
## Description of changes

<!-- What changes did you make -->

Add a workflow that runs on pr and when the flake.nix or lockfile change

## Relevant Issues

<!-- Eg. #43 -->
  • Loading branch information
IogaMaster committed Sep 27, 2023
1 parent 78db005 commit 5fd22da
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check_flake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check Nix flake
on:
pull_request:
push:
paths:
- 'flake.lock'
- 'flake.nix'

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
- run: nix flake check

0 comments on commit 5fd22da

Please sign in to comment.