Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gotcha committed Sep 21, 2023
1 parent 2ed1dc3 commit 58ab6ec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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] }}

0 comments on commit 58ab6ec

Please sign in to comment.