summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2022-03-09 14:46:30 +0100
committerGitHub <noreply@github.com>2022-03-09 14:46:30 +0100
commit128e50f357e73c166a7b4eee40d0d8cf6eb5780f (patch)
tree25a961f3d41a7013c43588c4f2d84f2f89d56b40 /.github/workflows
parent29dcc35ac14ac21fe97502ac890a1faac936054e (diff)
downloadastroid-git-128e50f357e73c166a7b4eee40d0d8cf6eb5780f.tar.gz
Fix end_lineno on PyPy 3.8 (#1454)
* Fix end_lineno on PyPy 3.8 * Add CI job for PyPy 3.8
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index b2eb14d8..e2eed70e 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -336,7 +336,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
- python-version: ["pypy-3.6", "pypy-3.7"]
+ python-version: ["pypy-3.6", "pypy-3.7", "pypy-3.8"]
outputs:
python-key: ${{ steps.generate-python-key.outputs.key }}
steps:
@@ -381,7 +381,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["pypy-3.6", "pypy-3.7"]
+ python-version: ["pypy-3.6", "pypy-3.7", "pypy-3.8"]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3.0.0