Skip to content

Commit

Permalink
ci nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément Dussieux committed Feb 13, 2024
1 parent eb6f669 commit 23b5a6c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
with:
python-version: "3.10"
cache: 'pip' # caching pip dependencies

- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true

- name: Maturin
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ jobs:
toolchain: nightly
override: true

- name: Install Rustfmt
run: rustup component add rustfmt --toolchain nightly
- name: Toolchain in nightly mode
run: |
rustup component add rustfmt --toolchain nightly
rustup component add clippy --toolchain nightly
- name: Check
Expand Down

0 comments on commit 23b5a6c

Please sign in to comment.