Skip to content

Commit

Permalink
Run tests on x86 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed Jun 28, 2024
1 parent 0b36eac commit 233ec52
Showing 1 changed file with 48 additions and 6 deletions.
54 changes: 48 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,54 @@ jobs:
strategy:
matrix:
include:
- { python-version: "3.8", tox-env: "py38", os: "ubuntu-latest" }
- { python-version: "3.9", tox-env: "py39", os: "ubuntu-latest" }
- { python-version: "3.10", tox-env: "py310", os: "ubuntu-latest" }
- { python-version: "3.11", tox-env: "py311", os: "ubuntu-latest" }
- { python-version: "3.12", tox-env: "py312", os: "ubuntu-latest" }
- { python-version: "3.12", tox-env: "py312", os: "windows-latest" }
- {
python-version: "3.8",
tox-env: "py38",
os: "ubuntu-latest",
arch: x64,
}
- {
python-version: "3.9",
tox-env: "py39",
os: "ubuntu-latest",
arch: x64,
}
- {
python-version: "3.10",
tox-env: "py310",
os: "ubuntu-latest",
arch: x64,
}
- {
python-version: "3.11",
tox-env: "py311",
os: "ubuntu-latest",
arch: x64,
}
- {
python-version: "3.12",
tox-env: "py312",
os: "ubuntu-latest",
arch: x64,
}
- {
python-version: "3.12",
tox-env: "py312",
os: "ubuntu-latest",
arch: x86,
}
- {
python-version: "3.12",
tox-env: "py312",
os: "windows-latest",
arch: x64,
}
- {
python-version: "3.12",
tox-env: "py312",
os: "windows-latest",
arch: x86,
}
name: Python ${{ matrix.python-version }} tests (${{ matrix.os }})
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 233ec52

Please sign in to comment.