We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3580315 commit fb26a12Copy full SHA for fb26a12
.github/workflows/compile.yml
@@ -9,9 +9,9 @@ permissions:
9
# events but only for the master branch
10
on:
11
push:
12
- branches: [ 3.11 ]
+ branches: [ 3.12 ]
13
pull_request:
14
15
16
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
jobs:
@@ -21,12 +21,12 @@ jobs:
21
runs-on: ubuntu-latest
22
strategy:
23
matrix:
24
- python-version: [3.9, 3.10, 3.11]
+ python-version: [3.9, 3.11]
25
26
steps:
27
- uses: actions/checkout@v2
28
- name: Set up Python ${{ matrix.python-version }}
29
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v5
30
with:
31
python-version: ${{ matrix.python-version }}
32
@@ -41,4 +41,3 @@ jobs:
41
- name: Run a multi-line script
42
run: |
43
make html
44
-
0 commit comments