[Python-checkins] Enable GitHub Actions on the 3.10 branch (GH-26242)

pablogsal webhook-mailer at python.org
Wed May 19 11:14:53 EDT 2021


https://github.com/python/cpython/commit/24ccc89547a6ebac058b2c56db4ad4142fdbebea
commit: 24ccc89547a6ebac058b2c56db4ad4142fdbebea
branch: main
author: Hugo van Kemenade <hugovk at users.noreply.github.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-05-19T16:14:37+01:00
summary:

Enable GitHub Actions on the 3.10 branch (GH-26242)

files:
M .github/workflows/build.yml
M .github/workflows/build_msi.yml
M .github/workflows/doc.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d50696d4ff288..e6b5d1710c1ca 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,16 +6,18 @@ name: Tests
 on:
   push:
     branches:
-    - main
-    - 3.9
-    - 3.8
-    - 3.7
+    - 'main'
+    - '3.10'
+    - '3.9'
+    - '3.8'
+    - '3.7'
   pull_request:
     branches:
-    - main
-    - 3.9
-    - 3.8
-    - 3.7
+    - 'main'
+    - '3.10'
+    - '3.9'
+    - '3.8'
+    - '3.7'
 
 jobs:
   check_source:
diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml
index 074f70df4e7a6..db5eaa17573f2 100644
--- a/.github/workflows/build_msi.yml
+++ b/.github/workflows/build_msi.yml
@@ -3,18 +3,20 @@ name: TestsMSI
 on:
   push:
     branches:
-    - main
-    - 3.9
-    - 3.8
-    - 3.7
+    - 'main'
+    - '3.10'
+    - '3.9'
+    - '3.8'
+    - '3.7'
     paths:
     - 'Tools/msi/**'
   pull_request:
     branches:
-    - main
-    - 3.9
-    - 3.8
-    - 3.7
+    - 'main'
+    - '3.10'
+    - '3.9'
+    - '3.8'
+    - '3.7'
     paths:
     - 'Tools/msi/**'
 
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index 3fcdcbc97f253..1bc14a22ac697 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -3,18 +3,20 @@ name: Docs
 on:
   #push:
   #  branches:
-  #  - main
-  #  - 3.9
-  #  - 3.8
-  #  - 3.7
+  #  - 'main'
+  #  - '3.10'
+  #  - '3.9'
+  #  - '3.8'
+  #  - '3.7'
   #  paths:
   #  - 'Doc/**'
   pull_request:
     branches:
-    - main
-    - 3.9
-    - 3.8
-    - 3.7
+    - 'main'
+    - '3.10'
+    - '3.9'
+    - '3.8'
+    - '3.7'
     paths:
     - 'Doc/**'
     - 'Misc/**'



More information about the Python-checkins mailing list