Skip to content

WIP

WIP #181

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- plone: "5.2-latest"
python: "3.8"
os: "ubuntu-22.04"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }}
id: setup
uses: plone/setup-plone@v2.0.0
with:
python-version: ${{ matrix.python }}
plone-version: ${{ matrix.plone }}
setuptools-version: "<49"
# Install pas.plugins.authomatic with test extras
- name: Install pas.plugins.authomatic
run: |
pip install git+https://github.com/plone/plone.autoinclude.git@python3.8#egg=plone.autoinclude
pip install ".[test]"
# test
- name: Test Codebase
run: |
zope-testrunner --auto-color --auto-progress --test-path src