mirror of
https://github.com/Eledio/superfaktura-client.git
synced 2025-11-01 00:18:25 +01:00
Compare commits
6 Commits
main
...
feature/li
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c0d03fa79 | ||
|
|
ff079440ac | ||
|
|
284edd3a45 | ||
|
|
e84426e49c | ||
|
|
d0147a0451 | ||
|
|
11e14a8924 |
24
.github/workflows/mypy.yml
vendored
Normal file
24
.github/workflows/mypy.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: MyPy Type Checking
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
type-check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r requirements_dev.txt
|
||||||
|
|
||||||
|
- name: Run MyPy
|
||||||
|
run: mypy .
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
# type: ignore
|
||||||
# Configuration file for the Sphinx documentation builder.
|
# Configuration file for the Sphinx documentation builder.
|
||||||
#
|
#
|
||||||
# For the full list of built-in configuration values, see the documentation:
|
# For the full list of built-in configuration values, see the documentation:
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
requests~=2.32.3
|
requests~=2.32.3
|
||||||
python-dotenv~=1.0.1
|
python-dotenv~=1.0.1
|
||||||
pytest~=8.3.5
|
pytest~=8.3.5
|
||||||
pytest-cov
|
pytest-cov~=6.0.0
|
||||||
|
mypy~=1.9.0
|
||||||
|
types-requests~=2.31
|
||||||
|
types-setuptools~=68.2
|
||||||
|
|||||||
Reference in New Issue
Block a user