From dae1fcd8bfc2b76181fc936b5f7d5b0797df7370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Apr 2023 20:04:19 +0200 Subject: [PATCH] Use a matrix for the canonicalization method in the integration test --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bb48cf..4c89e66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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