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"