chore(ci): bump target qt versions: 6.5.x, 6.6.x, 6.7.x and 6.8.0 #2017
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check tox tests, lint and types | |
on: | |
push: | |
branches: | |
- master | |
- releases/* | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
check_document: | |
name: Check packaging 📦 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 20 | |
fetch-tags: true | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install tools | |
run: | | |
pip install -U pip | |
pip install tox tox-gh-actions coveralls coverage[toml] | |
- name: Check | |
run: tox | |
env: | |
PYTEST_ADDOPTS: --cov-config=pyproject.toml --cov --cov-append --verbose | |
- name: Upload Coverage | |
run: coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |