mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2026-01-02 17:15:57 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I501b1acdfd316ea11ec0875d3e976c316a6a6964
23 lines
513 B
YAML
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
|