Skip to content

Commit c9cec41

Browse files
committed
Run C/C++ CI on all branches
Update the GitHub Actions workflow trigger configuration so both push and pull_request events run for every branch instead of only main. This ensures CI coverage for feature branches and non-main PRs.
1 parent b94dfb3 commit c9cec41

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: C/C++ CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- '*'
67
pull_request:
7-
branches: [ main ]
8+
branches:
9+
- '*'
810

911
jobs:
1012
build:

lib-board/.clangd

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)