16 lines
450 B
YAML
16 lines
450 B
YAML
|
when:
|
||
|
- path:
|
||
|
include: ['*.nix']
|
||
|
exclude: ['*.md', 'docs/**', '.woodpecker/*.yaml', '*.js', '*.lua', '*.scss', '*.nu']
|
||
|
steps:
|
||
|
check:
|
||
|
image: nixos/nix
|
||
|
commands:
|
||
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
||
|
- nix flake check
|
||
|
fmt:
|
||
|
image: nixos/nix
|
||
|
commands:
|
||
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
||
|
- nix run nixpkgs#alejandra -- -c .
|