1
0
Fork 0

add demo test workfloz

This commit is contained in:
Pierre Penninckx 2023-11-19 23:04:13 -08:00 committed by GitHub
parent 19ecc12a08
commit 04161b6c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
.github/workflows/demo.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: "Demo"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: |
for d in ./demo;
do nix flake check
done