Skip to content

Commit c392dee

Browse files
committed
Install specific Rust toolchain
1 parent 8d753cc commit c392dee

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14+
- run: rustup install 1.74 --profile default
15+
- run: rustup default 1.74
1416
- run: cargo fmt --check
1517
- run: cargo clippy --tests --all-features -- --deny warnings
1618
- run: cargo test

.github/workflows/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
url: ${{ steps.deployment.outputs.page_url }}
1919
steps:
2020
- uses: actions/checkout@v3
21+
- run: rustup install 1.74 --profile default
22+
- run: rustup default 1.74
2123
- run: cargo doc
2224
env:
2325
RUSTDOCFLAGS: "--document-private-items --default-theme=ayu -Dwarnings"

0 commit comments

Comments
 (0)