We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bcd47a commit b59851cCopy full SHA for b59851c
.github/workflows/ci.yml
@@ -9,18 +9,20 @@ on:
9
permissions:
10
contents: read
11
12
+# For programming language versions supported by Leetcode
13
+# https://support.leetcode.com/hc/en-us/articles/360011833974-What-are-the-environments-for-the-programming-languages
14
jobs:
15
python-build:
- name: Python 3.12
16
+ name: Python 3.11
17
runs-on: ubuntu-latest
18
19
steps:
20
- name: Checkout code
21
uses: actions/checkout@v4
- - name: Set up Python 3.12
22
+ - name: Set up Python 3.11
23
uses: actions/setup-python@v5
24
with:
- python-version: '3.12'
25
+ python-version: '3.11'
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
0 commit comments