2024-01-23 17:04:32 -05:00
|
|
|
steps:
|
|
|
|
check:
|
|
|
|
image: nixos/nix
|
2024-01-23 17:05:09 -05:00
|
|
|
when:
|
|
|
|
- path:
|
|
|
|
include: ['*.nix']
|
|
|
|
exclude: ['*.md', 'docs/**', '.woodpecker/*.yaml', '*.js', '*.lua', '*.scss', '*.nu']
|
2024-01-23 17:04:32 -05:00
|
|
|
commands:
|
|
|
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
2024-01-23 17:27:57 -05:00
|
|
|
- nix flake check
|
|
|
|
fmt:
|
|
|
|
image: nixos/nix
|
2024-01-23 17:04:32 -05:00
|
|
|
when:
|
|
|
|
- path:
|
|
|
|
include: ['*.nix']
|
|
|
|
exclude: ['*.md', 'docs/**', '.woodpecker/*.yaml', '*.js', '*.lua', '*.scss', '*.nu']
|
2024-01-23 17:27:57 -05:00
|
|
|
commands:
|
|
|
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
|
|
|
- nix run nixpkgs#alejandra -- -c .
|