build(deps-dev): bump nuitka from 2.4.7 to 2.4.8 #1597
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: tests | |
# https://docs.github.com/de/actions/using-workflows/workflow-syntax-for-github-actions | |
# https://docs.github.com/en/actions/using-workflows | |
# https://docs.github.com/en/actions/learn-github-actions/contexts | |
# https://docs.github.com/en/actions/learn-github-actions/expressions | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
# pull_request: | |
schedule: | |
# Run daily on default branch | |
- cron: '37 3 * * *' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
# exclude: | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
check-latest: ${{ github.event_name == 'schedule' }} | |
- name: Install zbar shared lib for QReader (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get install -y libzbar0 | |
- name: Install zbar shared lib for QReader (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install zbar | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -r requirements-dev.txt | |
pip install -U . | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics | |
if: matrix.python-version != '3.7' | |
- name: Type checking with mypy | |
run: | | |
mypy --install-types --non-interactive src/*.py tests/*.py | |
mypy --strict src/*.py tests/*.py | |
if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest' | |
- name: Test with pytest | |
run: pytest | |
if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest') && (matrix.python-version != '3.10' && matrix.platform != 'macos-latest') | |
- name: Test with pytest (with code coverage) | |
run: pytest --cov=extract_otp_secrets_test --junitxml=pytest.xml --cov-report=term-missing | tee pytest-coverage.txt | |
if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest' | |
# https://github.com/marketplace/actions/pytest-coverage-comment | |
- name: Pytest coverage comment | |
uses: MishaKav/pytest-coverage-comment@main | |
with: | |
pytest-coverage-path: ./pytest-coverage.txt | |
junitxml-path: ./pytest.xml | |
if: | | |
false && matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest' | |
&& !contains(github.ref, 'refs/tags/') | |