From 586f329c7a14d43674622bea623d176421157dc2 Mon Sep 17 00:00:00 2001 From: Ian Chamberlain Date: Sun, 29 Oct 2023 01:03:52 -0400 Subject: [PATCH] Test all packages in CI Since the linker issues are fixed by previous changes we should be able to run CI without `--package` and test the whole workspace instead. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69a3978..358f2f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,17 +75,17 @@ jobs: # unless cargo-3ds actually runs them as separate commands. See # https://github.com/rust3ds/cargo-3ds/issues/44 for more details - name: Build lib and integration tests - run: cargo 3ds test --no-run --tests --package ctru-rs + run: cargo 3ds test --no-run --tests - name: Run lib and integration tests uses: rust3ds/test-runner/run-tests@v1 with: - args: --tests --package ctru-rs + args: --tests - name: Build and run doc tests uses: rust3ds/test-runner/run-tests@v1 with: - args: --doc --package ctru-rs + args: --doc - name: Upload citra logs and capture videos uses: actions/upload-artifact@v3