Skip to content

Bump actions/setup-python from 6 to 7 in the github-actions group #102

Bump actions/setup-python from 6 to 7 in the github-actions group

Bump actions/setup-python from 6 to 7 in the github-actions group #102

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.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'setup.py'
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U tox
- name: Test
run: |
tox -v -e py
- name: Lint
if: matrix.python-version == '3.14'
run: |
python -m pip install -U pylint ".[test]"
pylint src