Skip to content

Commit 4b9afd2

Browse files
authored
ci(workflows): Update workflow branch filter (#32)
* run codestyle on every branch, run build only on master * remove whitelines
1 parent 39410bb commit 4b9afd2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/core-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: core-build
22
on:
33
push:
4+
branches:
5+
- 'master'
46
pull_request:
7+
branches:
8+
- 'master'
59
workflow_dispatch:
610

711
jobs:
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
name: Codestyle Checks
22
on:
33
push:
4-
branches: [ master ]
54
pull_request:
6-
branches: [ master ]
75

86
jobs:
97
check-codestyle:
108
strategy:
119
fail-fast: false
12-
1310
runs-on: ubuntu-latest
1411
name: Check Codestyling
1512
steps:
1613
- uses: actions/checkout@v2
17-
1814
- name: Check Codestyling
1915
run: source ./apps/ci/ci-codestyle.sh

0 commit comments

Comments
 (0)