Skip to content

build(deps): bump pytest from 9.0.3 to 9.1.1 #108

build(deps): bump pytest from 9.0.3 to 9.1.1

build(deps): bump pytest from 9.0.3 to 9.1.1 #108

Workflow file for this run

name: python-shaarli-client CI
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
name: python
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: pip install -r requirements/ci.txt
- name: Run tests
env:
TOXENV: py${{ matrix.python-version }}
run: tox