ci: add CI
Just runs `nix flake check`.
This commit is contained in:
parent
9e9229a06b
commit
71013fd764
1 changed files with 15 additions and 0 deletions
15
.forgejo/workflows/ci.yaml
Normal file
15
.forgejo/workflows/ci.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
on: [push, pull_request]
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: https://github.com/cachix/install-nix-action@v26
|
||||||
|
with:
|
||||||
|
nix_path: nixpkgs=channel:nixos-unstable
|
||||||
|
github_access_token: '${{ secrets.GH_TOKEN }}'
|
||||||
|
- uses: https://github.com/cachix/cachix-action@v14
|
||||||
|
with:
|
||||||
|
name: kitchen
|
||||||
|
authToken: '${{ secrets.CACHIX_TOKEN }}'
|
||||||
|
- run: nix flake check
|
Loading…
Reference in a new issue