Skip to content

Commit

Permalink
Update foundry_ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsadface committed Sep 10, 2024
1 parent 0e60acb commit cfca2fb
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions .github/workflows/foundry_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:
env:
MULTISIG_ADDRESS: ${{ vars.MULTISIG_ADDRESS }}
steps:
# - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# with:
# submodules: recursive
# fetch-depth: 0
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: recursive
fetch-depth: 0

# - name: Run install
# uses: borales/actions-yarn@v4
# with:
# cmd: install # will run `yarn install` command
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command

# - name: Install Foundry
# uses: foundry-rs/foundry-toolchain@v1
# with:
# version: nightly
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

# # first, build contracts excluding the tests and scripts. Check contract sizes in this step.
# - name: Run Contract Size check
Expand All @@ -47,12 +47,14 @@ jobs:
# forge clean && forge build --build-info
# # npx @openzeppelin/upgrades-core validate out/build-info

- name: Run tests
env:
MULTISIG_ADDRESS: ${{ vars.MULTISIG_ADDRESS }}
- name: Run Forge tests
run: |
env
echo $MULTISIG_ADDRESS
forge test -vvv
id: forge-test

# - name: Run solhint
# run: npx solhint contracts/**/*.sol


# Coverage:
Expand Down

0 comments on commit cfca2fb

Please sign in to comment.