Some checks failed
/ build (push) Failing after 0s
- Introduced a new workflow file at `.forgejo/workflows/nix.yaml`. - Configures CI to use Nix for building on push events.
9 lines
153 B
YAML
9 lines
153 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: nix
|
|
steps:
|
|
- name: NIX CI
|
|
- uses: actions/checkout@v3
|
|
- run: nix run nixpkgs#nixci -- build
|