aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <[email protected]>2026-04-28 07:59:49 +0000
committerGitHub <[email protected]>2026-04-28 07:59:49 +0000
commit915f0cafafab34f8b7766f996dbfa66e7bd16006 (patch)
tree15100099ee32dc7a639532ead3f1e77fc14c0e2a /.github/workflows
parent70e2be3c764147111920b1dd090d7d75e7c0fc2f (diff)
downloadedify-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 '.github/workflows')
-rw-r--r--.github/workflows/github-actions.yml56
1 files changed, 51 insertions, 5 deletions
diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml
index df099ea..1c20599 100644
--- a/.github/workflows/github-actions.yml
+++ b/.github/workflows/github-actions.yml
@@ -34,7 +34,6 @@ jobs:
- name: 'py38 (macos)'
python: '3.8'
toxpython: 'python3.8'
- python_arch: 'x64'
tox_env: 'py38'
os: 'macos-latest'
- name: 'py39 (ubuntu)'
@@ -52,7 +51,6 @@ jobs:
- name: 'py39 (macos)'
python: '3.9'
toxpython: 'python3.9'
- python_arch: 'x64'
tox_env: 'py39'
os: 'macos-latest'
- name: 'py310 (ubuntu)'
@@ -70,7 +68,6 @@ jobs:
- name: 'py310 (macos)'
python: '3.10'
toxpython: 'python3.10'
- python_arch: 'x64'
tox_env: 'py310'
os: 'macos-latest'
- name: 'py311 (ubuntu)'
@@ -88,7 +85,6 @@ jobs:
- name: 'py311 (macos)'
python: '3.11'
toxpython: 'python3.11'
- python_arch: 'x64'
tox_env: 'py311'
os: 'macos-latest'
- name: 'pypy38 (ubuntu)'
@@ -106,9 +102,59 @@ jobs:
- name: 'pypy38 (macos)'
python: 'pypy-3.8'
toxpython: 'pypy3.8'
- python_arch: 'x64'
tox_env: 'pypy38'
os: 'macos-latest'
+ - name: 'py312 (ubuntu)'
+ python: '3.12'
+ toxpython: 'python3.12'
+ python_arch: 'x64'
+ tox_env: 'py312'
+ os: 'ubuntu-latest'
+ - name: 'py312 (windows)'
+ python: '3.12'
+ toxpython: 'python3.12'
+ python_arch: 'x64'
+ tox_env: 'py312'
+ os: 'windows-latest'
+ - name: 'py312 (macos)'
+ python: '3.12'
+ toxpython: 'python3.12'
+ tox_env: 'py312'
+ os: 'macos-latest'
+ - name: 'py313 (ubuntu)'
+ python: '3.13'
+ toxpython: 'python3.13'
+ python_arch: 'x64'
+ tox_env: 'py313'
+ os: 'ubuntu-latest'
+ - name: 'py313 (windows)'
+ python: '3.13'
+ toxpython: 'python3.13'
+ python_arch: 'x64'
+ tox_env: 'py313'
+ os: 'windows-latest'
+ - name: 'py313 (macos)'
+ python: '3.13'
+ toxpython: 'python3.13'
+ tox_env: 'py313'
+ os: 'macos-latest'
+ - name: 'py314 (ubuntu)'
+ python: '3.14'
+ toxpython: 'python3.14'
+ python_arch: 'x64'
+ tox_env: 'py314'
+ os: 'ubuntu-latest'
+ - name: 'py314 (windows)'
+ python: '3.14'
+ toxpython: 'python3.14'
+ python_arch: 'x64'
+ tox_env: 'py314'
+ os: 'windows-latest'
+ - name: 'py314 (macos)'
+ python: '3.14'
+ toxpython: 'python3.14'
+ tox_env: 'py314'
+ os: 'macos-latest'
steps:
- uses: actions/checkout@v3
with: