mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2024-11-01 19:11:15 +00:00
21 lines
435 B
YAML
21 lines
435 B
YAML
name: Checks
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
check:
|
|
strategy:
|
|
matrix:
|
|
command:
|
|
- NIXPKGS_ALLOW_INSECURE=1 nix flake check --accept-flake-config --impure
|
|
- 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
|