Skip to content

Commit

Permalink
ci(workflows): Update workflow branch filter (#32)
Browse files Browse the repository at this point in the history
* run codestyle on every branch, run build only on master

* remove whitelines
  • Loading branch information
sogladev authored Jun 19, 2024
1 parent 39410bb commit 4b9afd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/core-build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: core-build
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
workflow_dispatch:

jobs:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/core_codestyle.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
name: Codestyle Checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
check-codestyle:
strategy:
fail-fast: false

runs-on: ubuntu-latest
name: Check Codestyling
steps:
- uses: actions/checkout@v2

- name: Check Codestyling
run: source ./apps/ci/ci-codestyle.sh

0 comments on commit 4b9afd2

Please sign in to comment.