We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7f5bf0 commit dc83277Copy full SHA for dc83277
1 file changed
.github/workflows/ci.yml
@@ -35,6 +35,14 @@ jobs:
35
target/
36
key: ${{ runner.os }}-cargo-compile-v1-${{ matrix.libfuse }}-${{ matrix.features }}-${{ hashFiles('**/Cargo.toml', '.github/workflows/*.yml') }}
37
38
+ - name: Non ASCII characters
39
+ if: startsWith(matrix.os, 'ubuntu')
40
+ run: |
41
+ if grep -P -n "[^\x00-\x7F]" -r --include="*.rs" --include="*.toml" .; then
42
+ echo "Non-ASCII characters detected"
43
+ exit 1
44
+ fi
45
+
46
- name: Install packages
47
run: |
48
sudo apt update
0 commit comments