diff options
author | Jiri Suchan <yed@vanyli.net> | 2022-06-30 11:36:40 +0900 |
---|---|---|
committer | Jiri Suchan <yed@vanyli.net> | 2022-08-19 20:32:13 +0900 |
commit | b04593c22bd5e88d24f1be19422696e7bde584f6 (patch) | |
tree | ccc55ef1be92c737807457eb169fe0216c636da1 /.github | |
parent | 35cfaafda8073f700c9d2fe42a43d3d81eaaea67 (diff) |
ci: move slowest static job to the end of pipeline
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static_checks.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 81c7042663..d1bcd557ae 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -33,10 +33,6 @@ jobs: run: | bash ./misc/scripts/file_format.sh - - name: Style checks via clang-format (clang_format.sh) - run: | - bash ./misc/scripts/clang_format.sh - - name: Header guards formatting checks (header_guards.sh) run: | bash ./misc/scripts/header_guards.sh @@ -59,3 +55,7 @@ jobs: - name: Documentation checks run: | doc/tools/make_rst.py --dry-run --color doc/classes modules + + - name: Style checks via clang-format (clang_format.sh) + run: | + bash ./misc/scripts/clang_format.sh |