diff options
| author | seth <[email protected]> | 2023-04-07 04:19:04 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-04-07 20:00:57 -0400 |
| commit | 87a91a195fbd75970b80002535f5f45d6987d173 (patch) | |
| tree | 8dea8dff38f7d3c256d41c551887b5bc05287680 /.github/workflows/check.yml | |
| parent | 4e4d8f3fb2108227426c28f05649eb67a78d180e (diff) | |
move all ci over to nix
Diffstat (limited to '.github/workflows/check.yml')
| -rw-r--r-- | .github/workflows/check.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..2d516de --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,28 @@ +name: check project + +on: + push: + paths: + - "**.lock" + - "**.nix" + - "**.rs" + - "**.toml" + pull_request: + paths: + - "**.lock" + - "**.nix" + - "**.rs" + - "**.toml" + workflow_dispatch: + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - uses: cachix/install-nix-action@v19 + with: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + + - run: nix flake check -L |
