From 58ab6ecb2c31a15aa0f9fd49d4314322dd86e1b2 Mon Sep 17 00:00:00 2001 From: Godefroid Chapelle Date: Thu, 21 Sep 2023 12:26:20 +0200 Subject: [PATCH] cleanup --- .github/workflows/tests.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d10cb45a..fb6d2d99 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,16 +60,16 @@ jobs: fail-fast: false matrix: config: - # [Python version, tox env] - - ["2.7", "plone43-py27", "4.3-2.7"] - - ["2.7", "plone50-py27", "5.0-2.7"] - - ["2.7", "plone51-py27", "5.1-2.7"] - - ["2.7", "plone52-py27", "5.2-2.7"] + # [tox env, docker image] + - ["plone43-py27", "plone/test-with-tox:4.3-2.7"] + - ["plone50-py27", "plone/test-with-tox:5.0-2.7"] + - ["plone51-py27", "plone/test-with-tox:5.1-2.7"] + - ["plone52-py27", "plone/test-with-tox:5.2-2.7"] runs-on: ubuntu-20.04 container: - image: plone/test-with-tox:${{ matrix.config[2] }} - name: ${{ matrix.config[1] }} + image: ${{ matrix.config[1] }} + name: ${{ matrix.config[0] }} steps: - uses: actions/checkout@v3 - name: Test - run: tox -e ${{ matrix.config[1] }} + run: tox -e ${{ matrix.config[0] }}