Skip to content

Commit

Permalink
ci: fix installation
Browse files Browse the repository at this point in the history
  • Loading branch information
HideBa committed Feb 3, 2024
1 parent 80466a2 commit 7b65189
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}

- name: Install dependencies
run: pip install -r requirements.txt
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies with Poetry
run: |
poetry install
- name: Linting
run: |
Expand Down

0 comments on commit 7b65189

Please sign in to comment.