From a8e8668b7aca8bda4d8781d69d276d62e3f39c0f Mon Sep 17 00:00:00 2001 From: Grace Yoder Date: Wed, 15 Jul 2026 21:45:05 -0600 Subject: [PATCH] feat: crow ci --- .crow/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .crow/test.yml diff --git a/.crow/test.yml b/.crow/test.yml new file mode 100644 index 0000000..ee924c2 --- /dev/null +++ b/.crow/test.yml @@ -0,0 +1,21 @@ +when: + - event: push + +clone: + git: + image: codefloe.com/crow-plugins/clone:1.1.0 + settings: + tags: true + +variables: + - &zig_image 'ghcr.io/rust-cross/cargo-zigbuild:0.23' + +steps: + - name: test + image: *zig_image + commands: + - zig build test + - zig build test -- --third-party + + +