Skip to content

.github/workflows: Improve pipeline with some parallel steps #40

.github/workflows: Improve pipeline with some parallel steps

.github/workflows: Improve pipeline with some parallel steps #40

Workflow file for this run

name: Exhaustive Flake Test
on:
workflow_dispatch:
push:
branches:
- staging
jobs:
check:
name: Check Flake Outputs
uses: ./.github/workflows/.call-nix.yml
with:
cmd: nix flake check
build:
name: Build Flake Outputs
strategy:
matrix:
outputs: ['nixosConfigurations.LAPTOP-3DT4F02.config.system.build.toplevel',
'nixosConfigurations.DESKTOP-3DT4F02.config.system.build.toplevel',
'nixosConfigurations.ISO-3DT4F02.config.system.build.isoImage']
uses: ./.github/workflows/.call-nix.yml
with:
cmd: nix build '.#${{ matrix.outputs }}'