forked from Layr-Labs/eigensdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add foundry installation to CI - Remove CI environments to avoid the github deploy messages
- Loading branch information
1 parent
177c7e4
commit 21649a3
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ jobs: | |
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
environment: testing | ||
steps: | ||
- name: Install Rust | ||
uses: dtolnay/[email protected] | ||
|
@@ -27,7 +26,6 @@ jobs: | |
lint: | ||
name: Run Lints | ||
runs-on: ubuntu-latest | ||
environment: testing | ||
steps: | ||
- name: Install Rust | ||
uses: dtolnay/[email protected] | ||
|
@@ -49,7 +47,6 @@ jobs: | |
test: | ||
name: Run Tests | ||
runs-on: ubuntu-latest | ||
environment: testing | ||
|
||
env: | ||
HOLESKY_WS_URL: ${{ secrets.HOLESKY_WS_URL }} | ||
|
@@ -85,6 +82,9 @@ jobs: | |
with: | ||
cache-on-failure: true | ||
|
||
- name: Install Foundry | ||
run: cargo install --git https://github.com/foundry-rs/foundry --profile release --locked foundry-cast anvil | ||
|
||
- name: docker | ||
uses: docker-practice/actions-setup-docker@master | ||
|
||
|