Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

- name: Install Rust Toolchain
run: rustup toolchain install stable --profile minimal --component clippy --component rustfmt --no-self-update

- name: Add Target
run: rustup target add ${{ matrix.target }}
- name: Setup Rust Toolchain
run: |
rustup set profile minimal
rustup component add clippy rustfmt
rustup target add ${{ matrix.target }}

- name: Install musl-gcc (Linux only)
if: matrix.os == 'ubuntu-24.04'
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

- name: Add Target
run: rustup target add ${{ matrix.target }}
- name: Setup Rust Toolchain
run: |
rustup set profile minimal
rustup target add ${{ matrix.target }}

- name: Install musl-gcc (Linux only)
if: matrix.os == 'ubuntu-24.04'
Expand Down
4 changes: 4 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[toolchain]
# We pin the minor version to prevent new Clippy lints from breaking CI.
# But, we still want to pick up new patch versions.
channel = "1.89"
Loading