Skip to content

Commit f2a52cc

Browse files
committed
Use Python 3.8 in job checking action
This helps detect the use of unsupported language features. Unfortunately there's no easy way to detect use of unsupported library features. Other tasks stay on the latest Python version. Signed-off-by: Tu Dinh <[email protected]>
1 parent 358665a commit f2a52cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/jobs-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
- uses: actions/checkout@v2
1010
- name: Set up Python
1111
uses: actions/setup-python@v4
12+
with:
13+
python-version: 3.8
1214
- name: Install dependencies
1315
run: |
1416
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)