[Python-checkins] Enable GitHub Actions for 3.9 branch (GH-20231)

Hugo van Kemenade webhook-mailer at python.org
Tue May 19 13:01:41 EDT 2020


https://github.com/python/cpython/commit/c105f7d8955ef9bf51125f6e44e8543e5f0618df
commit: c105f7d8955ef9bf51125f6e44e8543e5f0618df
branch: master
author: Hugo van Kemenade <hugovk at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-19T19:01:32+02:00
summary:

Enable GitHub Actions for 3.9 branch (GH-20231)

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

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7c3bca3fc0671..6bb52cb6a5daa 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -7,11 +7,13 @@ on:
   push:
     branches:
     - master
+    - 3.9
     - 3.8
     - 3.7
   pull_request:
     branches:
     - master
+    - 3.9
     - 3.8
     - 3.7
 
diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml
index e9ecf54727562..fb58e417cdd4f 100644
--- a/.github/workflows/build_msi.yml
+++ b/.github/workflows/build_msi.yml
@@ -4,6 +4,7 @@ on:
   push:
     branches:
     - master
+    - 3.9
     - 3.8
     - 3.7
     paths:
@@ -11,6 +12,7 @@ on:
   pull_request:
     branches:
     - master
+    - 3.9
     - 3.8
     - 3.7
     paths:
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 6dd973bf8e4ad..6fc15d3bffd5e 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -4,6 +4,7 @@ on:
   push:
     branches:
     - master
+    - 3.9
     - 3.8
     - 3.7
     paths-ignore:
@@ -12,6 +13,7 @@ on:
   #pull_request:
   #  branches:
   #  - master
+  #  - 3.9
   #  - 3.8
   #  - 3.7
   #  paths-ignore:
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index c8d395cea5156..44107853ee7cf 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -4,6 +4,7 @@ on:
   #push:
   #  branches:
   #  - master
+  #  - 3.9
   #  - 3.8
   #  - 3.7
   #  paths:
@@ -11,6 +12,7 @@ on:
   pull_request:
     branches:
     - master
+    - 3.9
     - 3.8
     - 3.7
     paths:



More information about the Python-checkins mailing list