From 9a8c8b2062cc4682baa4d860dfd3341ab1c8b029 Mon Sep 17 00:00:00 2001 From: A5 Pickle Date: Tue, 2 Jan 2024 17:03:06 -0600 Subject: [PATCH] fix ci.yml --- .github/workflows/ci.yml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d2f46e..7fdd7ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,27 +11,7 @@ on: - "main" jobs: - build: - runs-on: "ubuntu-latest" - steps: - - name: "Check out the repo" - uses: "actions/checkout@v3" - with: - submodules: "recursive" - - - name: "Install Foundry" - uses: "foundry-rs/foundry-toolchain@v1" - - - name: "Build the contracts and print their size" - run: "forge build --sizes" - - - name: "Add build summary" - run: | - echo "## Build result" >> $GITHUB_STEP_SUMMARY - echo "✅ Passed" >> $GITHUB_STEP_SUMMARY - - test: - needs: ["build"] + evm-test: runs-on: "ubuntu-latest" steps: - name: "Check out the repo" @@ -43,7 +23,7 @@ jobs: uses: "foundry-rs/foundry-toolchain@v1" - name: "Run the tests" - run: "make test" + run: "cd evm && make test" - name: "Add test summary" run: |