Skip to content

Commit ba5f79b

Browse files
author
Steven Marks
committed
chore(ci): Fix error on CI
1 parent 364815f commit ba5f79b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/pr.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545
- name: Install dependencies with Poetry
4646
run: poetry install
4747
- name: 📦 Check imports
48-
run: poetry run isort --diff .
48+
run: poetry run isort --diff pyarr
4949
- name: 🏴 Check Black formatting
50-
run: poetry run black --check .
50+
run: poetry run black --check pyarr
5151
- name: ❄️ Check flake8 formatting
52-
run: poetry run flake8 .
52+
run: poetry run flake8 pyarr
5353
- name: Check static type
54-
run: poetry run mypy .
54+
run: poetry run mypy pyarr
5555
- name: Check docstrings
56-
run: poetry run interrogate .
56+
run: poetry run interrogate pyarr

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- name: Install dependencies with Poetry
2323
run: poetry install
2424
- name: 📦 Check imports
25-
run: poetry run isort --diff .
25+
run: poetry run isort --diff pyarr
2626
- name: 🏴 Check Black formatting
27-
run: poetry run black --check .
27+
run: poetry run black --check pyarr
2828
- name: ❄️ Check flake8 formatting
29-
run: poetry run flake8 .
29+
run: poetry run flake8 pyarr
3030
- name: Check static type
31-
run: poetry run mypy .
31+
run: poetry run mypy pyarr
3232
- name: Check docstrings
33-
run: poetry run interrogate .
33+
run: poetry run interrogate pyarr
3434

3535
build-n-publish:
3636
name: Create release and publish 🐍 distribution 📦 to PyPI

0 commit comments

Comments
 (0)