We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed7d73d commit efa62b2Copy full SHA for efa62b2
.github/workflows/build.yml
@@ -82,7 +82,10 @@ jobs:
82
uses: namespacelabs/nscloud-cache-action@v1
83
with:
84
path: ${{ env.CACHED_PATHS }}
85
-
+
86
+ - name: install rustup
87
+ run: ./install-rust.sh
88
89
- name: install rustup components
90
run: rustup component add rustfmt
91
install-rust.sh
@@ -7,6 +7,8 @@
7
# is version-controlled and run in CI to make the dependency explicit (and to
8
# use a version newer than the debian packages).
9
10
+rustup --version >/dev/null 2>&1 && exit 0
11
12
# Fail on any error
13
set -e
14
0 commit comments