diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 6c3814c..1c28b62 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -18,7 +18,11 @@ jobs: run: ./configure - name: Run build - run: make build + run: | + source $GITHUB_PATH + make build - name: Run tests - run: make test + run: | + source $GITHUB_PATH + make test diff --git a/configure b/configure index e0d3d6e..edbfb04 100755 --- a/configure +++ b/configure @@ -4,5 +4,5 @@ curl -L https://foundry.paradigm.xyz | bash source /home/runner/.bashrc ls /home/runner/.config/.foundry/bin -#echo "/home/runner/.config/.foundry/bin" >> $GITHUB_PATH +echo "/home/runner/.config/.foundry/bin" >> $GITHUB_PATH /home/runner/.config/.foundry/bin/foundryup \ No newline at end of file