16 lines
474 B
YAML
16 lines
474 B
YAML
when:
|
|
- event: [push]
|
|
- 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 .
|