File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,12 @@ jobs:
45
45
- name : Install dependencies with Poetry
46
46
run : poetry install
47
47
- name : 📦 Check imports
48
- run : poetry run isort --diff .
48
+ run : poetry run isort --diff pyarr
49
49
- name : 🏴 Check Black formatting
50
- run : poetry run black --check .
50
+ run : poetry run black --check pyarr
51
51
- name : ❄️ Check flake8 formatting
52
- run : poetry run flake8 .
52
+ run : poetry run flake8 pyarr
53
53
- name : Check static type
54
- run : poetry run mypy .
54
+ run : poetry run mypy pyarr
55
55
- name : Check docstrings
56
- run : poetry run interrogate .
56
+ run : poetry run interrogate pyarr
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ jobs:
22
22
- name : Install dependencies with Poetry
23
23
run : poetry install
24
24
- name : 📦 Check imports
25
- run : poetry run isort --diff .
25
+ run : poetry run isort --diff pyarr
26
26
- name : 🏴 Check Black formatting
27
- run : poetry run black --check .
27
+ run : poetry run black --check pyarr
28
28
- name : ❄️ Check flake8 formatting
29
- run : poetry run flake8 .
29
+ run : poetry run flake8 pyarr
30
30
- name : Check static type
31
- run : poetry run mypy .
31
+ run : poetry run mypy pyarr
32
32
- name : Check docstrings
33
- run : poetry run interrogate .
33
+ run : poetry run interrogate pyarr
34
34
35
35
build-n-publish :
36
36
name : Create release and publish 🐍 distribution 📦 to PyPI
You can’t perform that action at this time.
0 commit comments