X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5918a016ff82e5fa12097d07b1624a89ec4e60ac..9424e795bf662743da6423b74e30ab74d1a93775:/.github/workflows/test.yml

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 03adc7f..7ba2a84 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,6 +1,15 @@
 name: Test
 
-on: [push, pull_request]
+on:
+  push:
+    paths-ignore:
+      - "docs/**"
+      - "*.md"
+
+  pull_request:
+    paths-ignore:
+      - "docs/**"
+      - "*.md"
 
 jobs:
   build:
@@ -15,7 +24,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        python-version: [3.6, 3.7, 3.8, 3.9]
+        python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
         os: [ubuntu-latest, macOS-latest, windows-latest]
 
     steps:
@@ -32,8 +41,14 @@ jobs:
           python -m pip install --upgrade tox
 
       - name: Unit tests
+        if: "!startsWith(matrix.python-version, 'pypy')"
+        run: |
+          tox -e ci-py -- -v --color=yes
+
+      - name: Unit tests pypy
+        if: "startsWith(matrix.python-version, 'pypy')"
         run: |
-          tox -e py
+          tox -e ci-pypy3 -- -v --color=yes
 
       - name: Publish coverage to Coveralls
         # If pushed / is a pull request against main repo AND