mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-08 20:02:39 +01:00
19 lines
361 B
YAML
19 lines
361 B
YAML
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
|