diff options
author | Skyler Hawthorne | 2022-06-02 04:13:08 +0000 |
---|---|---|
committer | Skyler Hawthorne | 2022-06-19 03:57:47 +0000 |
commit | 086b63ab1b5f004400721ef876b6f1441783f104 (patch) | |
tree | b359033ac22aa3ed692cf3aa3b4b96ee9411566a | |
parent | 41bf1d581137855596e00ad7702e8827325714b0 (diff) |
add integration-test cargo alias
-rw-r--r-- | .cargo/config | 1 | ||||
-rw-r--r-- | .github/workflows/build.yml | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.cargo/config b/.cargo/config index 35049cbc..5d615566 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,2 +1,3 @@ [alias] xtask = "run --package xtask --" +integration-test = "test --features integration --workspace --test integration" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d0383a7..b24cdb8c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,7 +64,12 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --workspace --features integration + args: --workspace + + - name: Run cargo integration-test + uses: actions-rs/cargo@v1 + with: + command: integration-test strategy: matrix: |