Skip to content

Commit

Permalink
feat: Add Nix CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Dom Rodriguez <[email protected]>
  • Loading branch information
shymega authored and gamelaster committed Dec 1, 2024
1 parent 3490c37 commit 98784b1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ name: Build
on: [push, pull_request]

jobs:
check-nix-flake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
- name: Check Nix Flake
run: nix flake check --print-build-logs

check-nix-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
- name: Build package
run: nix build --print-build-logs

build-windows:
runs-on: windows-2022
defaults:
Expand Down

0 comments on commit 98784b1

Please sign in to comment.