From cb12dcced44d9e1d2d9f9db7a1250c2b2536e598 Mon Sep 17 00:00:00 2001 From: 0vercl0k <1476421+0vercl0k@users.noreply.github.com> Date: Thu, 17 Oct 2024 05:48:54 -0700 Subject: [PATCH] Fix CI --- .github/workflows/symbolizer-rs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/symbolizer-rs.yml b/.github/workflows/symbolizer-rs.yml index 6986384..dd91b6e 100644 --- a/.github/workflows/symbolizer-rs.yml +++ b/.github/workflows/symbolizer-rs.yml @@ -65,16 +65,16 @@ jobs: run: rustup default stable - name: cargo test - run: cargo test --workspace + run: cargo test --all-targets - name: cargo test release - run: cargo test --release --workspace + run: cargo test --release --all-targets - name: cargo check - run: cargo check --workspace --examples --tests + run: cargo check --all-targets - name: cargo build - run: cargo build --release --workspace --examples --tests + run: cargo build --release --all-targets - name: Upload artifacts uses: actions/upload-artifact@v4