Try cargo test with different args

This commit is contained in:
Billy Chan 2021-10-30 22:12:55 +08:00
parent 870ca3ffb0
commit a1167b774e
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7

View File

@ -260,6 +260,27 @@ jobs:
args: > args: >
--manifest-path sea-orm-cli/Cargo.toml --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: cli:
name: CLI name: CLI
needs: init needs: init