[fc] Add plone.app.event to checkouts.cfg #5111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create only instance and test with Buildout | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: | |
# Use the oldest supported Python version, as that may pull in more versions. | |
- "3.10" | |
runs-on: ubuntu-latest | |
steps: | |
- name: locale | |
# needed for CMFPlone testUnicodeSplitter test | |
run: | | |
sudo locale-gen nl_NL@euro | |
sudo update-locale | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: "Install Python dependencies (pip)" | |
uses: "py-actions/py-dependency-install@v4" | |
with: | |
path: "requirements.txt" | |
- name: Cache eggs | |
uses: actions/cache@v4 | |
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 -c bare.cfg buildout:git-clone-depth=1 | |
- name: Quickly run unit tests without any layers | |
run: | | |
bin/test -u |