Skip to content

Commit

Permalink
fix(ci): correct config for poetry
Browse files Browse the repository at this point in the history
nicksnell committed May 6, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 6e47986 commit de1c59f
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -9,6 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install poetry
run: |
echo "Installing Poetry"
pipx install poetry==${POETRY_VERSION}
- name: Setup Python 3.9
id: cache
uses: actions/setup-python@v3
@@ -19,9 +24,6 @@ jobs:
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "Installing Poetry"
pip install --upgrade pip
pip install poetry==${POETRY_VERSION}
poetry install -D
- run: poetry run invoke test-static
@@ -32,6 +34,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install poetry
run: |
echo "Installing Poetry"
pipx install poetry==${POETRY_VERSION}
- name: Setup Python 3.9
id: cache
uses: actions/setup-python@v3
@@ -42,9 +49,6 @@ jobs:
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "Installing Poetry"
pip install --upgrade pip
pip install poetry==${POETRY_VERSION}
poetry install -D
- run: poetry run invoke test-unit

0 comments on commit de1c59f

Please sign in to comment.