Browse Source

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.
pull/141/head
Ian Chamberlain 1 year ago
parent
commit
586f329c7a
No known key found for this signature in database
GPG Key ID: AE5484D09405AA60
  1. 6
      .github/workflows/ci.yml

6
.github/workflows/ci.yml

@ -75,17 +75,17 @@ jobs:
# unless cargo-3ds actually runs them as separate commands. See # unless cargo-3ds actually runs them as separate commands. See
# https://github.com/rust3ds/cargo-3ds/issues/44 for more details # https://github.com/rust3ds/cargo-3ds/issues/44 for more details
- name: Build lib and integration tests - 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 - name: Run lib and integration tests
uses: rust3ds/test-runner/run-tests@v1 uses: rust3ds/test-runner/run-tests@v1
with: with:
args: --tests --package ctru-rs args: --tests
- name: Build and run doc tests - name: Build and run doc tests
uses: rust3ds/test-runner/run-tests@v1 uses: rust3ds/test-runner/run-tests@v1
with: with:
args: --doc --package ctru-rs args: --doc
- name: Upload citra logs and capture videos - name: Upload citra logs and capture videos
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

Loading…
Cancel
Save