From b0339cef32635c5d482b99ecc92a814e24848575 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama Date: Fri, 23 Dec 2022 15:51:44 +0900 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index dfadffb..de801a3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,10 +17,11 @@ jobs: steps: - uses: actions/checkout@v2 - uses: Swatinem/rust-cache@v2 + # installing is required for the tests - name: Build run: | rustup update stable - cargo build --verbose + cargo install --path . # Removed because it caused a segmentation fault and would not stop executing. Testing should be done locally. - name: Run tests run: cargo test --verbose