diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml new file mode 100644 index 0000000..0cbc667 --- /dev/null +++ b/.github/workflows/demo.yml @@ -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