nyxexprs/.github/workflows/check.yml
NotAShelf b301f2a2c4
ci: allow unsupported system in CI
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I501b1acdfd316ea11ec0875d3e976c316a6a6964
2025-12-29 14:53:34 +03:00

23 lines
513 B
YAML

name: Run Checks
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
id-token: write
jobs:
check:
strategy:
matrix:
command:
- NIXPKGS_ALLOW_INSECURE=1 NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix flake check --accept-flake-config
- nix run .#alejandra-custom -- -c . -e ./npins
uses: ./.github/workflows/nix.yml
with:
command: ${{ matrix.command }}
build:
needs: check
uses: ./.github/workflows/build.yml
secrets: inherit