Skip to content

Take over changes from branch release/5.2-dev. #72

Take over changes from branch release/5.2-dev.

Take over changes from branch release/5.2-dev. #72

name: Running Buildout on 3.8
on: [push]
jobs:
build:
strategy:
matrix:
python-version:
- "3.8"
os:
- ubuntu-20.04
- windows-2022
- macos-12
runs-on: ${{ matrix.os }}
steps:
- name: locale
# needed for CMFPlone testUnicodeSplitter test
run: |
sudo locale-gen nl_NL@euro
sudo update-locale
if: matrix.os == 'ubuntu-20.04'
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: "Install Python dependencies (pip)"
uses: "py-actions/py-dependency-install@v3"
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v3
with:
path: |
eggs
key: eggs-${{ matrix.python-version }}-${{ runner.os }}-${{ hashFiles('versions*.cfg') }}
restore-keys: |
eggs-${{ matrix.python-version }}-${{ runner.os }}-
eggs-${{ matrix.python-version }}-
- name: Run buildout
run: |
buildout buildout:git-clone-depth=1
- name: Quickly run unit tests without any layers
run: |
./bin/test -u
# Various tests fail on Windows.
if: matrix.os != 'windows-2022'