Skip to content

Commit

Permalink
mrow?
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFelidae committed Dec 16, 2024
1 parent 5531d82 commit c2970a6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Nix Package

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
run: nix build
- name: Check Flake
run: nix flake check

0 comments on commit c2970a6

Please sign in to comment.