Skip to content

Commit fb26a12

Browse files
committed
Updated GitHub Workflow file compile.yml
1 parent 3580315 commit fb26a12

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/compile.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ permissions:
99
# events but only for the master branch
1010
on:
1111
push:
12-
branches: [ 3.11 ]
12+
branches: [ 3.12 ]
1313
pull_request:
14-
branches: [ 3.11 ]
14+
branches: [ 3.12 ]
1515

1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
jobs:
@@ -21,12 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python-version: [3.9, 3.10, 3.11]
24+
python-version: [3.9, 3.11]
2525

2626
steps:
2727
- uses: actions/checkout@v2
2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v1
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

@@ -41,4 +41,3 @@ jobs:
4141
- name: Run a multi-line script
4242
run: |
4343
make html
44-

0 commit comments

Comments
 (0)