Skip to content

Commit

Permalink
use nightly rust for maturin CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanJamesLew committed Dec 31, 2023
1 parent 18e0b8b commit 032b4bb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/Maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
steps:
- uses: actions/checkout@v3
# install nightly rust for experiment features in kiddo
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -49,6 +56,13 @@ jobs:
target: [x64, x86]
steps:
- uses: actions/checkout@v3
# install nightly rust for experiment features in kiddo
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -72,6 +86,13 @@ jobs:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v3
# install nightly rust for experiment features in kiddo
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down

0 comments on commit 032b4bb

Please sign in to comment.