aboutsummaryrefslogtreecommitdiff
path: root/ci/templates/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to 'ci/templates/.github/workflows')
-rw-r--r--ci/templates/.github/workflows/github-actions.yml2
1 files changed, 0 insertions, 2 deletions
diff --git a/ci/templates/.github/workflows/github-actions.yml b/ci/templates/.github/workflows/github-actions.yml
index 23341dc..eb42d88 100644
--- a/ci/templates/.github/workflows/github-actions.yml
+++ b/ci/templates/.github/workflows/github-actions.yml
@@ -21,7 +21,6 @@ jobs:
os: 'ubuntu-latest'
{% for env in tox_environments %}
{% set prefix = env.split('-')[0] -%}
-{% if prefix not in ['py37', 'pypy37'] %}
{% if prefix.startswith('pypy') %}
{% set python %}pypy-{{ prefix[4] }}.{{ prefix[5] }}{% endset %}
{% set cpython %}pp{{ prefix[4:5] }}{% endset %}
@@ -43,7 +42,6 @@ jobs:
{% endif %}tox_env: '{{ env }}{% if 'cover' in env %},codecov{% endif %}'
os: '{{ os }}-latest'
{% endfor %}
-{% endif %}
{% endfor %}
steps:
- uses: actions/checkout@v2