Skip to content

Commit 3250d84

Browse files
authored
Merge pull request #1529 from ehuss/fmt-style-check
Enforce `cargo fmt` on the style-check code.
2 parents cab6adb + 51c3e19 commit 3250d84

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/main.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install Rust
2828
run: |
2929
rustup set profile minimal
30-
rustup toolchain install nightly -c rust-docs
30+
rustup toolchain install nightly -c rust-docs,rustfmt
3131
rustup default nightly
3232
- name: Install mdbook
3333
run: |
@@ -44,7 +44,11 @@ jobs:
4444
- name: Run tests
4545
run: mdbook test
4646
- name: Style checks
47-
run: (cd style-check && cargo run -- ../src)
47+
working-directory: style-check
48+
run: cargo run -- ../src
49+
- name: Style fmt
50+
working-directory: style-check
51+
run: cargo fmt --check
4852
- name: Check for broken links
4953
run: |
5054
curl -sSLo linkcheck.sh \

style-check/src/main.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ fn check_directory(dir: &Path, bad: &mut bool) -> Result<(), Box<dyn Error>> {
7171
style_error!(bad, path, "em-dash not allowed, use three dashes like ---");
7272
}
7373
if contents.contains('\u{a0}') {
74-
style_error!(bad, path, "don't use 0xa0 no-break-space, use &nbsp; instead");
74+
style_error!(
75+
bad,
76+
path,
77+
"don't use 0xa0 no-break-space, use &nbsp; instead"
78+
);
7579
}
7680
for line in contents.lines() {
7781
if line.ends_with(' ') {

0 commit comments

Comments
 (0)