Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel authored Oct 24, 2023
1 parent 92a1510 commit b5d0768
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: check
on:
workflow_run:
workflows: [prepare]
types:
- completed
jobs:
on-success:
runs-on: ubuntu-latest
container:
image: docker_image:ol9
steps:
- name: test
run: echo "test"
- name: Check clang-format
run: find . -type f -regex '.*\\.\\(hpp\\|cpp\\)$' -print0 | xargs -0 clang-format --dry-run --Werror --style=file"

0 comments on commit b5d0768

Please sign in to comment.