fixup order of checks
This commit is contained in:
parent
6df560d699
commit
f5dbc6ecc4
1 changed files with 8 additions and 5 deletions
13
.github/workflows/ci-main.yml
vendored
13
.github/workflows/ci-main.yml
vendored
|
@ -19,6 +19,10 @@ jobs:
|
|||
steps:
|
||||
- { uses: actions/checkout@v3, with: { submodules: "recursive", fetch-depth: "0" } }
|
||||
|
||||
- name: Set git safe directory
|
||||
if: success() || failure()
|
||||
run: |
|
||||
git config --global --add safe.directory '*'
|
||||
- name: Check for invalid characters
|
||||
if: success() || failure()
|
||||
run: |
|
||||
|
@ -31,14 +35,13 @@ jobs:
|
|||
- name: Run luacheck
|
||||
if: success() || failure()
|
||||
run: luacheck .
|
||||
- name: Copyright check # doxygen creates some image files, so it needs to be done after the copyright check
|
||||
if: success() || failure()
|
||||
run: |
|
||||
./update_copyrights --output=""
|
||||
- name: Doxygen check
|
||||
if: success() || failure()
|
||||
run: doxygen doc/doxygen/Doxyfile
|
||||
- name: Copyright check
|
||||
if: success() || failure()
|
||||
run: |
|
||||
git config --global --add safe.directory '*'
|
||||
./update_copyrights --output=""
|
||||
|
||||
ubuntu:
|
||||
strategy:
|
||||
|
|
Loading…
Add table
Reference in a new issue