We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f435fe commit f56d527Copy full SHA for f56d527
.github/workflows/ci.yaml
@@ -157,9 +157,9 @@ jobs:
157
- name: Rustfmt
158
run: cargo fmt --all -- --check
159
- name: Rustfmt compiletests
160
- run: rustfmt --check tests/compiletests/ui/**/*.rs
+ run: shopt -s globstar && rustfmt --check tests/compiletests/ui/**/*.rs
161
- name: Rustfmt difftests
162
- run: rustfmt --check tests/difftests/pipelines/**/*.rs
+ run: shopt -s globstar && rustfmt --check tests/difftests/pipelines/**/*.rs
163
- name: Check docs are valid
164
run: RUSTDOCFLAGS=-Dwarnings cargo doc --no-deps
165
- name: Check docs for `spirv-std` and `spirv-builder` on stable (for docs.rs)
0 commit comments