Files
harbor/.woodpecker/build.yaml
T
pure_sagacity 6a8abec015
ci/woodpecker/manual/build Pipeline is running
added woodpecker ci cd files
2026-07-13 18:22:48 -05:00

21 lines
366 B
YAML

kind: pipeline
name: rust-nix-ci
steps:
- name: build-and-test
image: nixos/nix:latest
commands:
- mkdir -p ~/.config/nix
- echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf
- nix build .
- nix develop --no-pure-eval . -c cargo test
trigger:
branch:
- main
event:
- push
- pull_request