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.
2 parents 6fe958f + b901c3d commit 51e7f88Copy full SHA for 51e7f88
.github/workflows/ci.yml
@@ -41,12 +41,22 @@ jobs:
41
steps:
42
- uses: actions/checkout@master
43
44
+ - id: component
45
+ uses: actions-rs/components-nightly@v1
46
+ with:
47
+ component: rustfmt
48
+
49
+ - uses: actions-rs/toolchain@v1
50
51
+ toolchain: ${{ steps.component.outputs.toolchain }}
52
+ override: true
53
54
- name: setup
55
run: |
- rustup default nightly
56
rustup component add rustfmt
57
test -x $HOME/.cargo/bin/mdbook || ./ci/install-mdbook.sh
58
rustc --version
59
60
- name: mdbook
61
62
mdbook build docs
0 commit comments