From 17bf1a26d2c98356a43fa4edad59627337b8340f Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Tue, 7 Feb 2023 20:10:50 +0200 Subject: [PATCH] ci: add missing Foundry install --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e27e88..eeb8ee0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,11 @@ jobs: steps: - name: "Check out the repo" uses: "actions/checkout@v3" + with: + submodules: "recursive" + + - name: "Install Foundry" + uses: "foundry-rs/foundry-toolchain@v1" - name: "Install Node.js" uses: "actions/setup-node@v3"