Skip to content

Commit 11dcb4b

Browse files
authored
fix(ci): Update CI tests to actually install the right python version (#3156)
fix(ci): update CI tests to actually install the right python version
1 parent 9f76b98 commit 11dcb4b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/lib-checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- "*.toml"
99
- "*.py"
1010
- ".*"
11-
branches: [master]
11+
branches: [ master ]
1212
pull_request:
1313
paths:
1414
- "discord/**"
@@ -140,16 +140,16 @@ jobs:
140140
runs-on: ${{ matrix.os }}
141141
strategy:
142142
matrix:
143-
os: [ubuntu-latest, windows-latest, macos-latest]
144-
python-version: ["3.10", "3.11", "3.12", "3.13"]
143+
os: [ ubuntu-latest, windows-latest, macos-latest ]
144+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
145145
steps:
146146
- name: "Checkout Repository"
147147
uses: actions/checkout@v6
148148

149149
- name: "Setup Python"
150150
uses: actions/setup-python@v6
151151
with:
152-
python-version: "3.13"
152+
python-version: ${{ matrix.python-version }}
153153
cache: "pip"
154154
cache-dependency-path: "pyproject.toml"
155155

@@ -163,7 +163,7 @@ jobs:
163163
run: tox
164164
tests-pass: # ref: https://github.com/orgs/community/discussions/4324#discussioncomment-3477871
165165
runs-on: ubuntu-latest
166-
needs: [tests]
166+
needs: [ tests ]
167167
if: always() && github.event_name != 'schedule'
168168
steps:
169169
- name: Tests succeeded

0 commit comments

Comments
 (0)