a6a81cce1b
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
22 lines
567 B
YAML
22 lines
567 B
YAML
# SPDX-FileCopyrightText: 2023 Christina Sørensen
|
|
# SPDX-FileContributor: Christina Sørensen
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Nix targets
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check Nix flake inputs
|
|
uses: DeterminateSystems/flake-checker-action@v5 # This action
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v9
|
|
- name: Nix Flake Check
|
|
run: nix flake check --all-systems
|