Skip to content

Commit

Permalink
GITHUB_ACTIONS: enable running workflow on push and pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
niwciu committed Jun 29, 2024
1 parent 2a9dbc1 commit 89aebb0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/clang-format_check.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Run clang-format Check
on:
workflow_dispatch:
# push:
# branches: [main, develop]
# pull_request:
# branches: [main, develop]
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
# on: workflow_dispatch
jobs:
formatting-check:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run_cppcheck.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Run cppcheck-action
on:
workflow_dispatch:
# push:
# branches: [main, develop]
# pull_request:
# branches: [main, develop]
push:
branches: [main, develop]
pull_request:
branches: [main, develop]

jobs:
cppcheck-annotations_scr:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run_lizard_lib_check.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Run Lizard Library Check
on:
workflow_dispatch:
# push:
# branches: [main, develop]
# pull_request:
# branches: [main, develop]
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lizard:
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run_modbus_tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Run ModBus Unit Tests
on:
workflow_dispatch:
# push:
# branches: [main, develop]
# pull_request:
# branches: [main, develop]
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
template_test_running:
name: ModBus Test RUN on Win
Expand Down

0 comments on commit 89aebb0

Please sign in to comment.