Skip to content

remove qt deps from this branch to simplify installation, update ci #83

remove qt deps from this branch to simplify installation, update ci

remove qt deps from this branch to simplify installation, update ci #83

Workflow file for this run

name: CI
on:
push:
branches:
- main
- cleanstart
pull_request:
branches:
- main
- cleanstart
jobs:
build-and-test:
name: "${{matrix.os}} :: Python ${{matrix.python-version}}"
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Python package
run: |
python -m pip install -e .[tests]
- name: Run Python tests
run: |
python -m pytest --cov effective_software_testing --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true