Fixes conditions

This commit is contained in:
GOB
2025-11-21 15:41:04 +09:00
parent 238549697d
commit 34298dbbaf
+15 -9
View File
@@ -11,7 +11,6 @@ on:
branches:
- '*'
paths:
- '*'
- '**.ino'
- '**.cpp'
- '**.hpp'
@@ -32,20 +31,27 @@ on:
- '**.clang-format'
workflow_dispatch:
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
formatting-check:
name: Formatting Check
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: './' # path to include
exclude: '' # path to exclude
#- check: 'src'
# exclude: '(Fonts)' # Exclude file paths containing "Fonts"
#- check: 'examples'
# exclude: ''
- check: 'src'
exclude: ''
- check: 'test'
exclude: ''
- check: 'examples'
exclude: ''
steps:
- name: Checkout
uses: actions/checkout@v4