diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9282e82..a6bc513 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,8 @@ jobs: name: Foundry project runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 with: submodules: recursive @@ -22,13 +23,18 @@ jobs: with: version: nightly + - name: Run Slither analysis on Solidity files + uses: crytic/slither-action@v0.4.0 + with: + ignore-compile: true + - name: Run Forge build run: | forge --version - forge build --sizes + forge build --sizes id: build - name: Run Forge tests run: | - forge test -vvv - id: test + forge test -vvv --root packages/zksync-storage-contracts + id: test \ No newline at end of file