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
21 changes: 21 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ jobs:
with:
profile: minimal
toolchain: stable
components: clippy,rustfmt

- name: Print Rust toolchain versions
run: |
rustup show active-toolchain
rustc --version
cargo --version

- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
Expand Down Expand Up @@ -134,6 +141,13 @@ jobs:
profile: minimal
toolchain: stable
target: ${{ matrix.target }}
components: clippy,rustfmt

- name: Print Rust toolchain versions
run: |
rustup show active-toolchain
rustc --version
cargo --version

- name: Cache Cargo registry
uses: actions/cache@v4
Expand Down Expand Up @@ -187,6 +201,13 @@ jobs:
with:
profile: minimal
toolchain: stable
components: clippy,rustfmt

- name: Print Rust toolchain versions
run: |
rustup show active-toolchain
rustc --version
cargo --version

- name: Cache Cargo registry
uses: actions/cache@v4
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ jobs:
with:
profile: minimal
toolchain: stable
components: clippy,rustfmt

- name: Print Rust toolchain versions
run: |
rustup show active-toolchain
rustc --version
cargo --version

- name: Cache cargo registry
uses: actions/cache@v4
Expand Down
Loading
Loading