From d100c2fad3c4a805474bc8bc46f3358601f28924 Mon Sep 17 00:00:00 2001 From: zenground0 Date: Tue, 27 Aug 2024 09:50:15 -0600 Subject: [PATCH] Try something smarter --- .github/workflows/makefile.yml | 8 ++++++-- configure | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) 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