From a1167b774e16139b4171e3b975a702ab5c62e88c Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Sat, 30 Oct 2021 22:12:55 +0800 Subject: [PATCH] Try `cargo test` with different args --- .github/workflows/rust.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 521238af..a2704e88 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -260,6 +260,27 @@ jobs: args: > --manifest-path sea-orm-cli/Cargo.toml + test-temp: + name: Unit Test (Temp) + runs-on: ubuntu-20.04 + strategy: + matrix: + args: ["--workspace", "--doc", "--all-targets"] + fail-fast: false + steps: + - uses: actions/checkout@v2 + + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - uses: actions-rs/cargo@v1 + with: + command: test + args: ${{ matrix.args }} + cli: name: CLI needs: init