Use a matrix for the canonicalization method in the integration test
This commit is contained in:
parent
efcdf80781
commit
dae1fcd8bf
1 changed files with 6 additions and 3 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -36,6 +36,11 @@ jobs:
|
|||
integration-test:
|
||||
name: Integration test
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
canonicalization:
|
||||
- simple/simple
|
||||
- relaxed/relaxed
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Apt update
|
||||
|
@ -59,10 +64,8 @@ jobs:
|
|||
with:
|
||||
command: build
|
||||
args: --verbose --all-features
|
||||
#- name: Run the integration test using simple/simple
|
||||
# run: ./tests/start_test.py "simple/simple"
|
||||
- name: Run the integration test using relaxed/relaxed
|
||||
run: ./tests/start_test.py "relaxed/relaxed"
|
||||
run: ./tests/start_test.py ${{ matrix.canonicalization }}
|
||||
cargo-fmt:
|
||||
name: Cargo fmt
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue