Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: format
on:
push:
branches:
- '*'
- "*"
paths:
- .github/workflows/format.yaml
- scripts/format.py
Expand All @@ -11,7 +11,6 @@ on:
- tests/source/**
- tests/app/**


jobs:
build:
name: Test code formatting
Expand All @@ -29,4 +28,4 @@ jobs:
- name: Test formatting
shell: bash
run: |
python3 scripts/format.py --check
python3 scripts/format.py --check --clang-format-executable clang-format-18
3 changes: 1 addition & 2 deletions .github/workflows/licence.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ name: licence
on:
push:
branches:
- '*'
- "*"
paths:
- .github/workflows/licence.yaml
- scripts/check_licence.py
- include/**


jobs:
build:
name: Test code formatting
Expand Down
Loading