Skip to content

Configuring with plone.meta #245

Configuring with plone.meta

Configuring with plone.meta #245

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
plone-version: ["6.1", "6.0"]
exclude:
- python-version: 3.9
plone-version: 6.1
steps:
# git checkout
- uses: actions/checkout@v2
# python setup
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "**/requirements.txt"
# python install
- name: pip install
run: pip install -r requirements-${{ matrix.plone-version }}.txt
# buildout
- name: buildout
run: buildout -t 10 -c plone-${{ matrix.plone-version }}.x.cfg
env:
CI: true
# test
- name: test
run: bin/test