From 5f84ac62e93ff431e7f47c3717e1c65515373e6f Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Sat, 12 Apr 2025 13:52:41 -0400 Subject: [PATCH] Sanity test fixtures --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64db572..02e1071 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,6 +124,12 @@ jobs: - name: Build run: cargo build + - name: Sanity test fixtures + run: | + for X in fixtures/*; do + pushd "$X" && yarn && anchor test && popd + done + - name: Test run: | cargo test --config "$GROUP_RUNNER"