about summary refs log tree commit diff stats
path: root/.github/workflows/python.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/python.yml')
-rw-r--r--.github/workflows/python.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 59558a20..3bb993ea 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -4,7 +4,11 @@ on:
   push:
     paths:
       - '.github/workflows/python.yml'
-      - '*.py'
+      - '**.py'
+  pull_request:
+    paths:
+      - '.github/workflows/python.yml'
+      - '**.py'
 
 jobs:
   test_py:
@@ -12,7 +16,7 @@ jobs:
     strategy:
       max-parallel: 4
       matrix:
-        python-version: [3.5, 3.6, 3.7, 3.8]
+        python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
     steps:
     - uses: actions/checkout@v1
       with: