Skip to content

Merge pull request #174 from plone/4.x-update-ci #629

Merge pull request #174 from plone/4.x-update-ci

Merge pull request #174 from plone/4.x-update-ci #629

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, "3.10", "3.11"]
plone: ["6.0.13", "5.2.15"]
exclude:
- plone: "5.2.15"
python: 3.9
- plone: "5.2.15"
python: "3.10"
- plone: "5.2.15"
python: "3.11"
steps:
# git checkout
- 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 }}
# Install plone.volto with test extras
- name: Install plone.volto
run: |
pip install ".[test]"
# test
- name: test
run: |
zope-testrunner --auto-color --auto-progress --test-path src