From ec3de5e2b68d6ae21eb95d1e2a2dd001f697451b Mon Sep 17 00:00:00 2001 From: Yash Saraswat <107622640+0xpanicError@users.noreply.github.com> Date: Mon, 27 Nov 2023 05:15:35 +0530 Subject: [PATCH] fix: added --via-ir flag --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a28cc4..90deee5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: - name: Check compatibility with latest if: always() run: | - output=$(forge build --skip test) + output=$(forge build --via-ir --skip test) if echo "$output" | grep -q "Warning"; then echo "$output" @@ -44,7 +44,7 @@ jobs: run: forge --version - name: Run tests - run: forge test -vvv + run: forge test --via-ir -vvv fmt: runs-on: ubuntu-latest @@ -60,4 +60,4 @@ jobs: run: forge --version - name: Check formatting - run: forge fmt --check \ No newline at end of file + run: forge fmt --check