[fc] Add plone.staticresources to checkouts.cfg #430
This file contains hidden or 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: make test | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
env: | |
PYTHONWARNINGS: ignore | |
GIT_CLONE_DEPTH: 1 | |
steps: | |
- name: locale | |
# needed for CMFPlone testUnicodeSplitter test | |
if: startsWith(matrix.os, 'ubuntu') | |
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: Run make test | |
run: | | |
make test |