- Introduced a new workflow file at `.forgejo/workflows/nix.yaml`. - Configures CI to use Nix for building on push events.
This commit is contained in:
parent
f6a4aaf2d1
commit
2dca381ced
8
.forgejo/workflows/nix.yaml
Normal file
8
.forgejo/workflows/nix.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: nix
|
||||||
|
steps:
|
||||||
|
- name: NIX CI
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: nix run nixpkgs#nixci -- build
|
Loading…
Reference in a new issue