Skip to content

Commit

Permalink
[ci] Add a nix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jun 8, 2024
1 parent 45f9d2d commit c09a5c1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/nix-builds.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Nix build

on: push
jobs:
nix:
name: Nix
runs-on: ubuntu-latest
steps:

- name: Checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Install nix
uses: cachix/install-nix-action@v24

- name: Build
run: nix-build -E 'with import <nixpkgs> {}; qt6.callPackage ./ci/nix.build.nix {}'

0 comments on commit c09a5c1

Please sign in to comment.