Skip to content

Commit

Permalink
attempt different arch for python
Browse files Browse the repository at this point in the history
  • Loading branch information
zlatsic committed Sep 29, 2024
1 parent 0e520b8 commit d4479c4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test-plat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,35 @@ jobs:
strategy:
matrix:
versions:
- os: "ubuntu-20-04"
- os: "ubuntu-latest"
python: "3.6"
arch: x86
- os: "ubuntu-latest"
python: "3.7"
arch: amd64
- os: "ubuntu-latest"
python: "3.8"
arch: amd64
- os: "ubuntu-latest"
python: "3.9"
arch: amd64
- os: "ubuntu-latest"
python: "3.10"
arch: amd64
- os: "ubuntu-latest"
python: "3.11"
arch: amd64
- os: "ubuntu-latest"
python: "3.12"
arch: amd64
runs-on: ${{ matrix.versions.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.versions.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.versions.python }}
architecture: ${{ matrix.versions.arch }}
- name: Download Ruly wheel
uses: actions/download-artifact@master
with:
Expand Down

0 comments on commit d4479c4

Please sign in to comment.