Skip to content

fix(test): Change indent of test nix code #60

fix(test): Change indent of test nix code

fix(test): Change indent of test nix code #60

Workflow file for this run

---
name: Check
'on':
push:
branches:
- main
jobs:
format:
name: File formatting
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- uses: DeterminateSystems/magic-nix-cache-action@v7
- run: 'nix fmt . -- --check'
- run: 'nix run nixpkgs#yamllint -- --strict --format github .'
- run: 'nix run nixpkgs#deadnix -- .'
- run: 'nix run nixpkgs#statix -- check --config .statix.toml'
check:
name: Check flake
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- uses: DeterminateSystems/magic-nix-cache-action@v7
- run: 'nix flake check'
- run: 'nix build .#theme'