Skip to content

Commit

Permalink
Revert "Use actions/setup-python v3"
Browse files Browse the repository at this point in the history
See actions/setup-python#369

This reverts commit 6f4366d.
  • Loading branch information
srittau committed May 9, 2022
1 parent 6f4366d commit 07738be
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test-and-lint.yml
Expand Up @@ -12,11 +12,12 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python "${{ matrix.python-version }}"
uses: actions/setup-python@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python-version }}"
cache: poetry
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: "**/poetry.lock"
- name: Install poetry
run: pip --disable-pip-version-check install -U poetry
- name: Install Python packages
Expand Down

0 comments on commit 07738be

Please sign in to comment.