Skip to content

Commit

Permalink
test(ci): remove architecture matrix options
Browse files Browse the repository at this point in the history
Nothing in the code is architecture-specific.

Signed-off-by: Mike Fiedler <[email protected]>
  • Loading branch information
miketheman committed Aug 27, 2024
1 parent b28f423 commit 272678e
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,14 @@ jobs:
- "ubuntu-latest"
- "windows-latest"
- "macos-13"
architecture:
- x64
- x86
exclude:
# Linux and macOS don't have x86 python
- os: "ubuntu-latest"
architecture: x86
- os: "macos-latest"
architecture: x86
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
name: "Python: ${{ matrix.py }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
architecture: ${{ matrix.architecture }}
- run: pip install tox
- name: Running tox
run: tox -e py
Expand All @@ -54,7 +44,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.8"
architecture: x64

- run: pip install tox
- run: tox -e py38,coverage
Expand All @@ -67,6 +56,5 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.8"
architecture: x64
- run: pip install tox
- run: tox -e lint

0 comments on commit 272678e

Please sign in to comment.