Skip to content

Commit 272678e

Browse files
committed
test(ci): remove architecture matrix options
Nothing in the code is architecture-specific. Signed-off-by: Mike Fiedler <miketheman@gmail.com>
1 parent b28f423 commit 272678e

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,14 @@ jobs:
2424
- "ubuntu-latest"
2525
- "windows-latest"
2626
- "macos-13"
27-
architecture:
28-
- x64
29-
- x86
30-
exclude:
31-
# Linux and macOS don't have x86 python
32-
- os: "ubuntu-latest"
33-
architecture: x86
34-
- os: "macos-latest"
35-
architecture: x86
36-
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
27+
name: "Python: ${{ matrix.py }} on ${{ matrix.os }}"
3728
runs-on: ${{ matrix.os }}
3829
steps:
3930
- uses: actions/checkout@v4
4031
- name: Setup python
4132
uses: actions/setup-python@v5
4233
with:
4334
python-version: ${{ matrix.py }}
44-
architecture: ${{ matrix.architecture }}
4535
- run: pip install tox
4636
- name: Running tox
4737
run: tox -e py
@@ -54,7 +44,6 @@ jobs:
5444
uses: actions/setup-python@v5
5545
with:
5646
python-version: "3.8"
57-
architecture: x64
5847

5948
- run: pip install tox
6049
- run: tox -e py38,coverage
@@ -67,6 +56,5 @@ jobs:
6756
uses: actions/setup-python@v5
6857
with:
6958
python-version: "3.8"
70-
architecture: x64
7159
- run: pip install tox
7260
- run: tox -e lint

0 commit comments

Comments
 (0)