Skip to content

Commit

Permalink
ci: test on stable as well
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh committed Aug 8, 2024
1 parent ba4f981 commit 34a0246
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
runs-on: ${{matrix.platform}}
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
include:
- {platform: ubuntu-latest, rust: nightly}
- {platform: ubuntu-latest, rust: stable}
- {platform: windows-latest, rust: nightly}
- {platform: macos-latest, rust: nightly}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -27,7 +28,7 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
rust-toolchain: nightly
rust-toolchain: '${{matrix.rust}}'
manylinux: auto
args: --release --sdist --out dist
- name: Install built wheel
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ jobs:
matrix:
include:
- {platform: ubuntu-latest, rust: nightly}
- {platform: ubuntu-latest, rust: stable}
- {platform: windows-latest, rust: nightly}
- {platform: macos-latest, rust: nightly}

steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 34a0246

Please sign in to comment.