add integration-test cargo alias

This commit is contained in:
Skyler Hawthorne 2022-06-02 00:13:08 -04:00
parent 41bf1d5811
commit 086b63ab1b
2 changed files with 7 additions and 1 deletions

View file

@ -1,2 +1,3 @@
[alias]
xtask = "run --package xtask --"
integration-test = "test --features integration --workspace --test integration"

View file

@ -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: