Skip to content

back to Document

back to Document #923

Workflow file for this run

name: Plone RESTAPI CI
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
container:
image: python:2.7.18-buster
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.7, 2.7]
plone-version: [5.2, 5.1, 4.3]
exclude:
- python-version: 3.6
plone-version: 4.3
- python-version: 3.6
plone-version: 5.0
- python-version: 3.6
plone-version: 5.1
- python-version: 3.7
plone-version: 4.3
- python-version: 3.7
plone-version: 5.0
- python-version: 3.7
plone-version: 5.1
- python-version: 3.8
plone-version: 4.3
- python-version: 3.8
plone-version: 5.0
- python-version: 3.8
plone-version: 5.1
steps:
# git checkout
- uses: actions/checkout@v2
# python setup
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
if: ${{ matrix.python-version != 2.7 }}
with:
python-version: ${{ matrix.python-version }}
# python cache
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# python install
- run: pip install virtualenv
- run: pip install wheel
- name: pip install
run: pip install -r requirements.txt
# buildout
- name: buildout
run: buildout -t 10 -c plone-${{ matrix.plone-version }}.x.cfg code-analysis:return-status-codes=True
env:
CI: true
# code analysis
- name: code analysis
run: bin/code-analysis
# build sphinx
- name: sphinx
run: if [ "${{ matrix.plone-version }}" == "5.2" ] && [ ${{ matrix.python-version }} == '3.7' ]; then bin/sphinxbuilder; fi
# test
- name: test
run: bin/test
# test no uncommited changes
- name: test no uncommited changes
run: bin/test-no-uncommitted-doc-changes
env:
PYTHON_VERSION: ${{ matrix.python-version }}
PLONE_VERSION: ${{ matrix.plone-version }}
# test sphinx warnings
- name: sphinx
run: if [ "${{ matrix.plone-version }}" == "5.2" ] && [ ${{ matrix.python-version }} == '3.7' ]; then bin/test-no-sphinx-warnings; fi