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 8787d0f commit dc71a04Copy full SHA for dc71a04
.github/workflows/meson.yml
@@ -21,7 +21,15 @@ jobs:
21
pip install meson --break-system-packages
22
23
- name: Check Files
24
- run: git ls-files --exclude='meson.build' --exclude='meson.options' --exclude='meson_options.txt' --exclude='*.wrap' --ignored -c -z | xargs -0r meson format -i -c ./meson.format
+ run: >
25
+ git ls-files
26
+ --exclude='meson.build'
27
+ --exclude='meson.options'
28
+ --exclude='meson_options.txt'
29
+ --ignored -c -z | xargs -0r
30
+ meson format --check-only -c ./meson.format
31
+ || echo "Not all meson files are formatted correctly"
32
+ && echo "All meson files are formatted correctly"
33
34
## TODO: use mesonlint from
35
## https://github.com/JCWasmx86/mesonlsp
0 commit comments