Skip to content

Release 16.4

Release 16.4 #80

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.8, 3.9]
plone: ["6.0-latest", "5.2-latest"]
exclude:
- plone: "5.2-latest"
python: 3.9
- plone: "6.0-latest"
python: 3.8
steps:
- uses: actions/checkout@v2
- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }}
id: setup
uses: plone/[email protected]
with:
python-version: ${{ matrix.python }}
plone-version: ${{ matrix.plone }}
- name: Install
run: |
pip install -e ".[test]"
- name: test
run: |
zope-testrunner --auto-color --auto-progress --test-path .