Skip to content

Commit 2b420a4

Browse files
authored
Merge pull request #274 from crytic/dev-fix-forge-ci
ci: forge: fix failing test
2 parents 6bb6e72 + 8cb5734 commit 2b420a4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
tests:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
os: ["ubuntu-latest", "windows-2022"]
2021
type: ["brownie", "buidler", "dapp", "embark", "etherlime", "hardhat", "solc", "truffle", "waffle", "foundry"]

scripts/ci_test_foundry.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ curl -L https://foundry.paradigm.xyz | bash
99
export PATH=$PATH:/home/runner/.foundry/bin
1010
foundryup
1111

12+
# The foundry init process makes a temporary local git repo and needs certain values to be set
13+
git config --global user.email "[email protected]"
14+
git config --global user.name "CI User"
15+
1216
mkdir forge_test
1317
cd forge_test || exit 255
1418
forge init

0 commit comments

Comments
 (0)