From dadf239525824d2996c362e6179d3f82570a6bea Mon Sep 17 00:00:00 2001 From: Gyubong Date: Wed, 9 Oct 2024 19:01:30 +0900 Subject: [PATCH] fix: Broken CI --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b785c27..94e0cb8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,9 +65,9 @@ jobs: - name: Build and Check Rust unit tests and integration tests all pass run: | git submodule update --init + cargo install cargo-nextest make build - make unit-test - make integration-test + make test - name: Set up Python uses: actions/setup-python@v3 @@ -98,6 +98,6 @@ jobs: - name: Build and Check Rust unit tests and integration tests all pass on Windows run: | git submodule update --init + cargo install cargo-nextest make build - make unit-test - make integration-test + make test