Skip to content

Commit

Permalink
fix workflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
ben9809 committed Jun 2, 2024
1 parent 44fbe8e commit 493634c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/python-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ jobs:
with:
python-version: '3.11'

- name: Install dependencies
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install --with code-quality
- name: Check with Black
Expand All @@ -49,6 +53,11 @@ jobs:
with:
python-version: '3.11'

- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 493634c

Please sign in to comment.