From f721ac395daac56e329341c06f25ba5ced7b5ea8 Mon Sep 17 00:00:00 2001 From: mertwole Date: Wed, 17 Jul 2024 09:56:09 +0000 Subject: [PATCH] Add deps --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 870f4755..e0b21e21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,16 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Install Rust toolchain + - name: Install rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 + - name: Install golang + uses: actions/setup-go@v5 + with: + go-version: '1.20.1' + - name: Install foundry + uses: foundry-rs/foundry-toolchain@v1 + with: + version: nightly - name: Build run: cargo build --all-targets - name: Test