aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rw-r--r--ci/templates/.github/workflows/github-actions.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/templates/.github/workflows/github-actions.yml b/ci/templates/.github/workflows/github-actions.yml
index 33869cd..23341dc 100644
--- a/ci/templates/.github/workflows/github-actions.yml
+++ b/ci/templates/.github/workflows/github-actions.yml
@@ -34,13 +34,13 @@ jobs:
{% for os, python_arch in [
['ubuntu', 'x64'],
['windows', 'x64'],
- ['macos', 'x64'],
+ ['macos', ''],
] %}
- name: '{{ env }} ({{ os }})'
python: '{{ python }}'
toxpython: '{{ toxpython }}'
- python_arch: '{{ python_arch }}'
- tox_env: '{{ env }}{% if 'cover' in env %},codecov{% endif %}'
+ {% if python_arch %}python_arch: '{{ python_arch }}'
+ {% endif %}tox_env: '{{ env }}{% if 'cover' in env %},codecov{% endif %}'
os: '{{ os }}-latest'
{% endfor %}
{% endif %}