From 8635af59de99f58b727163e15cec0c843e9af197 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 17 Oct 2021 02:28:38 +0200 Subject: [PATCH] ci: run int. tests against py3.6 and py3.9 --- .github/workflows/integration-test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index fd20ba5..d8c39c0 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -61,12 +61,15 @@ jobs: matrix_include_pre_filter: | - name: "Int. tests: Ubuntu 18.04, Py 3.6" runs_on: ubuntu-18.04 + python_version: 3.6 extra_flags: "" - name: "Int. tests: Ubuntu 20.04, Py 3.9" runs_on: ubuntu-20.04 + python_version: 3.9 extra_flags: "" - name: "Int. tests: Ubuntu 20.04, Py 3.9, --upgrade" runs_on: ubuntu-20.04 + python_version: 3.9 extra_flags: --upgrade dont_run_on_ref: refs/heads/master @@ -83,7 +86,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: 3.6 + python-version: ${{ matrix.python_version }} - name: Set BOOTSTRAP_PIP_SPEC value run: |