mirror of
https://github.com/scito/extract_otp_secrets.git
synced 2025-12-15 03:10:40 +01:00
ci: fix if ${{ matrix.python-version }}
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -38,7 +38,6 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install flake8 pytest pytest-mock mypy types-protobuf
|
pip install flake8 pytest pytest-mock mypy types-protobuf
|
||||||
pip install --use-pep517 -r requirements.txt
|
pip install --use-pep517 -r requirements.txt
|
||||||
mypy --install-types --non-interactive *.py
|
|
||||||
- name: Lint with flake8
|
- name: Lint with flake8
|
||||||
run: |
|
run: |
|
||||||
# stop the build if there are Python syntax errors or undefined names
|
# stop the build if there are Python syntax errors or undefined names
|
||||||
@@ -47,7 +46,8 @@ jobs:
|
|||||||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics
|
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics
|
||||||
- name: Type checking with mypy
|
- name: Type checking with mypy
|
||||||
run: |
|
run: |
|
||||||
|
mypy --install-types --non-interactive *.py
|
||||||
mypy --strict *.py
|
mypy --strict *.py
|
||||||
if: ${{ matrix.python-version == '3.x' }}
|
if: ${{ matrix.python-version }} == '3.x'
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: pytest
|
run: pytest
|
||||||
|
|||||||
Reference in New Issue
Block a user