Skip to content

Commit

Permalink
chore: Use actions/setup-python@v5 in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
defnull committed Sep 7, 2024
1 parent 582e5ca commit 52c57b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
container:
image: "python:${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dev dependencies
run: pip install .[dev]
- name: Run tests
Expand Down

0 comments on commit 52c57b0

Please sign in to comment.