From d3fd0ef950105e4065999bd98c89985e4f85b227 Mon Sep 17 00:00:00 2001 From: Scott Yeager Date: Thu, 9 Oct 2025 15:15:21 -0700 Subject: [PATCH] Fix test workflow to use current branch code instead of main branch --- .github/workflows/test.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b6e214b7..f9ac915b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,8 +24,18 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - - name: Setup V & Herolib - run: ./install_v.sh --herolib + - name: Setup V + run: ./install_v.sh + + - name: Setup Herolib from current branch + run: | + # Create necessary directories + mkdir -p ~/.vmodules/freeflowuniverse + # Remove any existing herolib symlink + rm -f ~/.vmodules/freeflowuniverse/herolib + # Create symlink to current code + ln -s $(pwd)/lib ~/.vmodules/freeflowuniverse/herolib + echo "Herolib symlink created to current branch code!" - name: Do all the basic tests run: ./test_basic.vsh