Skip to content

Commit

Permalink
Merge branch 'main' into add-formatter-module
Browse files Browse the repository at this point in the history
  • Loading branch information
koxudaxi authored Dec 3, 2023
2 parents d8067f6 + 6cd17e1 commit 2894f63
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,24 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
- name: Install old Poetry
uses: snok/install-poetry@v1
if: matrix.python-version == '3.7'
with:
version: 1.4.2
virtualenvs-path: .venv
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install Poetry
uses: snok/install-poetry@v1
if: matrix.python-version != '3.7'
with:
version: 1.7.1
virtualenvs-path: .venv
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit 2894f63

Please sign in to comment.