Skip to content

Commit

Permalink
move poetry install first
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyheppell committed Jul 2, 2024
1 parent 397739e commit d6996a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
cache: "poetry"
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Install Python dependencies
run: poetry install --no-interaction --no-root
- name: Install Project
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
Expand All @@ -23,8 +25,6 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Install Python dependencies
run: poetry install --no-interaction --no-root
- name: Install Project
Expand Down

0 comments on commit d6996a8

Please sign in to comment.