Skip to content

Merge pull request #6 from Hexafuchs/dependabot/pip/pytest-cov-5.0.0 #26

Merge pull request #6 from Hexafuchs/dependabot/pip/pytest-cov-5.0.0

Merge pull request #6 from Hexafuchs/dependabot/pip/pytest-cov-5.0.0 #26

Workflow file for this run

name: run-tests
on:
push:
paths:
- '**.py'
- '.github/workflows/run-tests.yml'
- 'pyproject.toml'
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.10", "3.11", "3.12"]
name: ${{ matrix.python }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flit
flit install --deps develop
- name: Execute tests
run: python3 -m pytest