Skip to content

Commit 24ccc89

Browse files
authored
Enable GitHub Actions on the 3.10 branch (GH-26242)
1 parent b3ab434 commit 24ccc89

File tree

3 files changed

+30
-24
lines changed

3 files changed

+30
-24
lines changed

.github/workflows/build.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,18 @@ name: Tests
66
on:
77
push:
88
branches:
9-
- main
10-
- 3.9
11-
- 3.8
12-
- 3.7
9+
- 'main'
10+
- '3.10'
11+
- '3.9'
12+
- '3.8'
13+
- '3.7'
1314
pull_request:
1415
branches:
15-
- main
16-
- 3.9
17-
- 3.8
18-
- 3.7
16+
- 'main'
17+
- '3.10'
18+
- '3.9'
19+
- '3.8'
20+
- '3.7'
1921

2022
jobs:
2123
check_source:

.github/workflows/build_msi.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@ name: TestsMSI
33
on:
44
push:
55
branches:
6-
- main
7-
- 3.9
8-
- 3.8
9-
- 3.7
6+
- 'main'
7+
- '3.10'
8+
- '3.9'
9+
- '3.8'
10+
- '3.7'
1011
paths:
1112
- 'Tools/msi/**'
1213
pull_request:
1314
branches:
14-
- main
15-
- 3.9
16-
- 3.8
17-
- 3.7
15+
- 'main'
16+
- '3.10'
17+
- '3.9'
18+
- '3.8'
19+
- '3.7'
1820
paths:
1921
- 'Tools/msi/**'
2022

.github/workflows/doc.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@ name: Docs
33
on:
44
#push:
55
# branches:
6-
# - main
7-
# - 3.9
8-
# - 3.8
9-
# - 3.7
6+
# - 'main'
7+
# - '3.10'
8+
# - '3.9'
9+
# - '3.8'
10+
# - '3.7'
1011
# paths:
1112
# - 'Doc/**'
1213
pull_request:
1314
branches:
14-
- main
15-
- 3.9
16-
- 3.8
17-
- 3.7
15+
- 'main'
16+
- '3.10'
17+
- '3.9'
18+
- '3.8'
19+
- '3.7'
1820
paths:
1921
- 'Doc/**'
2022
- 'Misc/**'

0 commit comments

Comments
 (0)