diff options
| author | copilot-swe-agent[bot] <[email protected]> | 2026-04-28 07:59:49 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-28 07:59:49 +0000 |
| commit | 915f0cafafab34f8b7766f996dbfa66e7bd16006 (patch) | |
| tree | 15100099ee32dc7a639532ead3f1e77fc14c0e2a /ci/templates/.github/workflows/github-actions.yml | |
| parent | 70e2be3c764147111920b1dd090d7d75e7c0fc2f (diff) | |
| download | edify-915f0cafafab34f8b7766f996dbfa66e7bd16006.tar.xz edify-915f0cafafab34f8b7766f996dbfa66e7bd16006.zip | |
feat: fix macOS python_arch and add Python 3.12/3.13/3.14 support
Agent-Logs-Url: https://github.com/luciferreeves/edify/sessions/16418662-2de9-4625-aad9-e9fc6cecb1c5
Co-authored-by: luciferreeves <[email protected]>
Diffstat (limited to 'ci/templates/.github/workflows/github-actions.yml')
| -rw-r--r-- | ci/templates/.github/workflows/github-actions.yml | 6 |
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 %} |
