From 0c49eeeaea206526756ff42feb89025c73133607 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Sat, 30 Sep 2023 16:41:48 -0400 Subject: [PATCH] Add RUST_BACKTRACE=1 to CI workflows --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e75f68c..caee4615 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,8 +24,8 @@ jobs: - name: Test VM working-directory: ./vm - run: cargo test + run: RUST_BACKTRACE=1 cargo test - name: Test NCC working-directory: ./ncc - run: cargo test + run: RUST_BACKTRACE=1 cargo test