zsh.nix/.forgejo/workflows/check.yml
jiriks74 a21a879db1
Some checks failed
Perform checks / nix_flake_check (push) Failing after 16s
Perform checks / formatting (push) Failing after 40s
fix: Drop nixpkgs input
2025-03-13 22:25:46 +01:00

27 lines
714 B
YAML

name: Perform checks
on:
push:
pull_request:
workflow_dispatch:
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Run nix fmt
run: nix fmt -- --check .
nix_flake_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Check Nix flake inputs
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Run nix flake check
run: nix flake check