From 396a3fcdab9d949b1a63722624f78478b843faf0 Mon Sep 17 00:00:00 2001 From: Elias Tazartes Date: Tue, 19 Dec 2023 16:30:18 +0100 Subject: [PATCH] fix: fix CI order of linting --- .github/workflows/test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5beb1f7d..c1d0ec7e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,15 +60,14 @@ jobs: key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} - name: Setup the Kakarot submodule run: make setup - # Lint + # Create dump + - name: Create dump + run: ./scripts/make_with_env.sh && make dump-katana - name: Lint run: | cargo check && cargo fmt --all -- --check && cargo clippy --workspace --all-features --all-targets -- -D warnings - # Create dump - - name: Create dump - run: ./scripts/make_with_env.sh && make dump-katana - name: Generate code coverage run: make test-coverage - name: Upload coverage to Codecov