ci: use 2 separate jobs for format
This commit is contained in:
parent
be53c42f0d
commit
93379449ee
1 changed files with 9 additions and 2 deletions
11
.github/workflows/check-format.yml
vendored
11
.github/workflows/check-format.yml
vendored
|
|
@ -7,9 +7,8 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-format:
|
check-qml:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/${{ github.repository_owner }}/shell-arch-env:latest
|
image: ghcr.io/${{ github.repository_owner }}/shell-arch-env:latest
|
||||||
|
|
||||||
|
|
@ -24,6 +23,14 @@ jobs:
|
||||||
end
|
end
|
||||||
python3 scripts/qml-lint-conventions.py
|
python3 scripts/qml-lint-conventions.py
|
||||||
|
|
||||||
|
check-cpp:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/${{ github.repository_owner }}/shell-arch-env:latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Check C++ format
|
- name: Check C++ format
|
||||||
shell: fish {0}
|
shell: fish {0}
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue