Skip to content

Back to development: 0.19 #34

Back to development: 0.19

Back to development: 0.19 #34

Workflow file for this run

name: tests
on: [push, pull_request]
env:
PYTHONHASHSEED: 1042466059
ZOPE_INTERFACE_STRICT_IRO: 1
jobs:
test:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'setup.py'
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U coverage zope.testrunner
python -m pip install -U -e ".[test]"
- name: Test
run: |
coverage run -m zope.testrunner --test-path=src
coverage report
- name: Lint
if: matrix.python-version == '3.12'
run: |
python -m pip install -U pylint
pylint src