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 abcec45 commit 8d0c69aCopy full SHA for 8d0c69a
.github/workflows/rust.yml
@@ -3,8 +3,8 @@ on: [push, pull_request]
3
name: Continuous integration
4
5
jobs:
6
- lint_fuzz_stable:
7
- name: Lint + Fuzz
+ fmt_fuzz_stable:
+ name: Fmt + Fuzz
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
@@ -24,7 +24,7 @@ jobs:
24
- name: Running fuzzer
25
env:
26
DO_FUZZ: true
27
- DO_LINT: true
+ DO_FMT: true
28
run: ./contrib/test.sh
29
30
Nightly:
contrib/test.sh
@@ -8,8 +8,8 @@ then
alias cargo="cargo +$TOOLCHAIN"
fi
11
-# Lint if told to
12
-if [ "$DO_LINT" = true ]
+# Format if told to
+if [ "$DO_FMT" = true ]
13
then
14
(
15
rustup component add rustfmt
0 commit comments