2022-09-03 22:56:14 +00:00
|
|
|
name: tests
|
2022-09-03 13:38:47 +00:00
|
|
|
|
2022-12-28 21:28:54 +00:00
|
|
|
# https://docs.github.com/de/actions/using-workflows/workflow-syntax-for-github-actions
|
|
|
|
# https://docs.github.com/en/actions/using-workflows
|
2023-01-03 15:47:47 +00:00
|
|
|
# https://docs.github.com/en/actions/learn-github-actions/contexts
|
|
|
|
# https://docs.github.com/en/actions/learn-github-actions/expressions
|
2022-12-28 21:28:54 +00:00
|
|
|
|
2022-12-18 20:45:32 +00:00
|
|
|
on:
|
|
|
|
push:
|
2023-01-24 19:58:55 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2023-01-24 22:00:32 +00:00
|
|
|
- '**.md'
|
2023-01-14 08:42:44 +00:00
|
|
|
# pull_request:
|
2022-12-18 20:45:32 +00:00
|
|
|
schedule:
|
2022-12-28 21:28:54 +00:00
|
|
|
# Run daily on default branch
|
2022-12-24 00:59:35 +00:00
|
|
|
- cron: '37 3 * * *'
|
2022-09-03 13:38:47 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-08 19:41:17 +00:00
|
|
|
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
|
2022-12-18 20:45:32 +00:00
|
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
2022-12-28 21:28:54 +00:00
|
|
|
# exclude:
|
2022-12-18 20:45:32 +00:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.platform }}
|
2022-09-03 13:38:47 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2023-01-24 19:58:55 +00:00
|
|
|
check-latest: false
|
2022-12-24 00:59:35 +00:00
|
|
|
- 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
|
2022-09-03 13:38:47 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2022-12-28 21:28:54 +00:00
|
|
|
pip install -U -r requirements-dev.txt
|
|
|
|
pip install -U .
|
2022-09-03 13:38:47 +00:00
|
|
|
- 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
|
2022-09-03 14:12:28 +00:00
|
|
|
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics
|
2022-12-28 21:28:54 +00:00
|
|
|
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'
|
2022-09-03 13:38:47 +00:00
|
|
|
- name: Test with pytest
|
2022-12-18 20:45:32 +00:00
|
|
|
run: pytest
|
2023-04-28 08:27:18 +00:00
|
|
|
if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest') && (matrix.python-version != '3.10' && matrix.platform != 'macos-latest')
|
2022-12-28 21:28:54 +00:00
|
|
|
- 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
|
2023-01-03 15:47:47 +00:00
|
|
|
if: |
|
2023-02-18 09:22:03 +00:00
|
|
|
false && matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest'
|
2023-01-03 15:47:47 +00:00
|
|
|
&& !contains(github.ref, 'refs/tags/')
|
|
|
|
|