Skip to content

Commit

Permalink
build: switch to python 3.10 in tests (#1054)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehnelt authored Nov 3, 2023
1 parent 45699bb commit 8131e63
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
strategy:
matrix:
# TODO - expand matrix once stable
python-version: [3.6]
python-version:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Fetch and Diff PR with base from which it was cloned
Expand All @@ -36,7 +37,7 @@ jobs:
git fetch origin master "${{ github.event.pull_request.base.sha }}"
git diff --diff-filter=ACM --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" > "${HOME}/changed_files.txt"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 8131e63

Please sign in to comment.