zsh.nix/.forgejo/workflows/check.yml
jiriks74 8f57fe1466
Some checks failed
Perform checks / nix_flake_check (push) Successful in 1m5s
Perform checks / formatting (push) Failing after 25s
feat(ci): Add check and update workflows
2024-12-19 11:02:29 +01:00

37 lines
1.1 KiB
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: Setup Action cache for nix
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- 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: Setup Action cache for nix
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- 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