From 6a8abec01546ae630b1e352c3cc24962ad3332bb Mon Sep 17 00:00:00 2001 From: Maaz Khokhar Date: Mon, 13 Jul 2026 18:22:39 -0500 Subject: [PATCH] added woodpecker ci cd files --- .woodpecker/build.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .woodpecker/build.yaml diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml new file mode 100644 index 0000000..73b5e67 --- /dev/null +++ b/.woodpecker/build.yaml @@ -0,0 +1,20 @@ +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