Support Python packages with no namespace or multiple namespaces (#86) #80
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: Plone Project Settings CI | |
on: | |
push: | |
paths: | |
- "sub/project_settings/**" | |
- ".github/workflows/sub_project_settings.yml" | |
workflow_dispatch: | |
env: | |
PYTHON_VERSION: "3.10" | |
jobs: | |
generation: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
steps: | |
# git checkout | |
- name: Checkout codebase | |
uses: actions/checkout@v4 | |
# python setup | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
# python install | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
# Test | |
- name: Run tests | |
run: | | |
cd sub/project_settings | |
python -m pytest tests |