This repository has been archived by the owner on May 15, 2024. It is now read-only.
Fix ci badge for Plone Addon #2
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 Addon CI | |
on: | |
push: | |
paths: | |
- "plone_addon/**" | |
- ".github/workflows/plone_addon.yml" | |
workflow_dispatch: | |
jobs: | |
generation: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
steps: | |
# git checkout | |
- name: Checkout codebase | |
uses: actions/checkout@v4 | |
# python setup | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
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 plone_addon | |
python -m pytest tests |