Skip to content

Commit

Permalink
run-tests.yaml: Make use of the 3.x version specifier for Python
Browse files Browse the repository at this point in the history
To avoid having to update some of the versions.

Signed-off-by: Øyvind Rønningstad <[email protected]>
  • Loading branch information
oyvindronningstad committed Dec 10, 2024
1 parent 9c4a247 commit d23dd56
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.x"

- name: Checkout Zephyr
run: |
Expand Down Expand Up @@ -120,18 +120,15 @@ jobs:
merge-test-2-win:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.12']
name: Merge tests 2 - Python (${{ matrix.python-version }}) functional tests (Windows)
name: Merge tests 2 - Python (latest) functional tests (Windows)
steps:
- name: Checkout the code
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.x'

- name: Read zcbor version
run: |
Expand Down Expand Up @@ -166,7 +163,8 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: '3.x'
check-latest: true

- name: Install zcbor
uses: ./.github/actions/install_zcbor
Expand Down

0 comments on commit d23dd56

Please sign in to comment.