add integration-test cargo alias
This commit is contained in:
parent
41bf1d5811
commit
086b63ab1b
2 changed files with 7 additions and 1 deletions
|
@ -1,2 +1,3 @@
|
||||||
[alias]
|
[alias]
|
||||||
xtask = "run --package xtask --"
|
xtask = "run --package xtask --"
|
||||||
|
integration-test = "test --features integration --workspace --test integration"
|
||||||
|
|
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -64,7 +64,12 @@ jobs:
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --workspace --features integration
|
args: --workspace
|
||||||
|
|
||||||
|
- name: Run cargo integration-test
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: integration-test
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
Loading…
Add table
Reference in a new issue