We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c96a2 commit cfdf344Copy full SHA for cfdf344
.github/workflows/ci.yml
@@ -13,14 +13,12 @@ jobs:
13
steps:
14
- name: Checkout source
15
uses: actions/checkout@v3
16
+ - name: Install rustup
17
+ run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
18
- name: Setup nightly rust
- uses: dtolnay/rust-toolchain@stable
- with:
19
- toolchain: nightly
+ run: rustup toolchain install nightly
20
- name: Setup stable rust
21
22
23
- rust-version: ${{ matrix.rust }}
+ run: rustup toolchain install ${{ matrix.rust }}
24
- name: Run unit tests
25
run: rustc --version && cargo --version && cargo test
26
- name: Run script tests
0 commit comments