Skip to content

Commit

Permalink
Try something smarter
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenGround0 committed Aug 27, 2024
1 parent ba8d6a5 commit d100c2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d100c2f

Please sign in to comment.