Skip to content

Commit

Permalink
Update push script
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Nov 14, 2023
1 parent 450b514 commit 144e125
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
include:
- version: "3.11"
check-formatting: "true"

steps:
- uses: actions/checkout@v4
Expand All @@ -34,8 +37,14 @@ jobs:
run: |
python -m pip install -U poetry pip wheel
python -m poetry install -n
sudo npm install -g pyright
- name: Install missing dependencies
run: |
poetry run pip install flake8 pytest
- name: Install Node.js dependencies
run: |
npm install -g pyright
- name: Code style
if: ${{ matrix.check-formatting }}
run: |
poetry run black --check .
poetry run isort -c .
Expand Down

0 comments on commit 144e125

Please sign in to comment.