diff options
author | Rory& <myrainbowdash949@gmail.com> | 2024-02-19 10:09:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 21:09:50 +1100 |
commit | 29df169c81d963742cc973a8835a7c1a126d7220 (patch) | |
tree | 7db8092c20e187ff812f8b9f71b28c5c25641d56 /.github/workflows | |
parent | Fix application icons (#1110) (diff) | |
download | server-29df169c81d963742cc973a8835a7c1a126d7220.tar.xz |
Add nix flake to repo (#1111)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/nix-build.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml new file mode 100644 index 00000000..ae9afa2e --- /dev/null +++ b/.github/workflows/nix-build.yml @@ -0,0 +1,18 @@ +name: Nix build + +on: + push: + pull_request: + +jobs: + build-nix: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v25 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: DeterminateSystems/magic-nix-cache-action@v2 + - run: nix build -L + - run: nix develop --command echo OK |