Merge pull request #29 from justinlynn/feature/enable-xnode-personaliser #103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
build: | |
name: Build Nix targets | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v5 | |
with: | |
check-owner: false # we use our own custom fork of nixpkgs stored in other org on GitHub, so this check would fail otherwise | |
check-supported: false # we use our own custom fork of nixpkgs which uses dev as the unstable integration branch, so this check would fail otherwise | |
ignore-missing-flake-lock: false | |
fail-mode: true | |
send-statistics: false |