Skip to content

Commit

Permalink
chore(ci): Fix error on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marksie1988 committed Jan 11, 2022
1 parent 364815f commit ba5f79b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
- name: Install dependencies with Poetry
run: poetry install
- name: 📦 Check imports
run: poetry run isort --diff .
run: poetry run isort --diff pyarr
- name: 🏴 Check Black formatting
run: poetry run black --check .
run: poetry run black --check pyarr
- name: ❄️ Check flake8 formatting
run: poetry run flake8 .
run: poetry run flake8 pyarr
- name: Check static type
run: poetry run mypy .
run: poetry run mypy pyarr
- name: Check docstrings
run: poetry run interrogate .
run: poetry run interrogate pyarr
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
- name: Install dependencies with Poetry
run: poetry install
- name: 📦 Check imports
run: poetry run isort --diff .
run: poetry run isort --diff pyarr
- name: 🏴 Check Black formatting
run: poetry run black --check .
run: poetry run black --check pyarr
- name: ❄️ Check flake8 formatting
run: poetry run flake8 .
run: poetry run flake8 pyarr
- name: Check static type
run: poetry run mypy .
run: poetry run mypy pyarr
- name: Check docstrings
run: poetry run interrogate .
run: poetry run interrogate pyarr

build-n-publish:
name: Create release and publish 🐍 distribution 📦 to PyPI
Expand Down

0 comments on commit ba5f79b

Please sign in to comment.