Skip to content

Commit c825154

Browse files
author
kr-2003
committed
done
1 parent cab9b09 commit c825154

File tree

10 files changed

+42
-0
lines changed

10 files changed

+42
-0
lines changed

.github/workflows/MacOS.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: OSX-x86
22

33
on:
4+
pull_request:
5+
branches: [main]
46
push:
57
branches: [main]
68
release:

.github/workflows/Ubuntu-arm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Ubuntu-arm
22

33
on:
4+
pull_request:
5+
branches: [main]
46
push:
57
branches: [main]
68
release:

.github/workflows/Ubuntu.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Ubuntu-x86
22

33
on:
4+
pull_request:
5+
branches: [main]
46
push:
57
branches: [main]
68
release:

.github/workflows/Windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Windows
22
on:
3+
pull_request:
4+
branches: [main]
35
push:
46
branches: [main]
57
release:

.github/workflows/clang-format.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: clang-format
22

3+
on:
4+
pull_request:
5+
paths:
6+
- '**.h'
7+
- '**.cpp'
8+
39
concurrency:
410
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
511
cancel-in-progress: true

.github/workflows/clang-tidy-review-post.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Post clang-tidy review comments
22

3+
on:
4+
workflow_run:
5+
workflows: ["clang-tidy-review"]
6+
types:
7+
- completed
8+
39
permissions:
410
checks: write
511
pull-requests: write

.github/workflows/clang-tidy-review.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: clang-tidy-review
22

3+
on:
4+
pull_request:
5+
paths:
6+
- '**.h'
7+
- '**.cpp'
8+
39
concurrency:
410
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
511
cancel-in-progress: true

.github/workflows/deploy-pages.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
name: Build and Deploy
22

3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
schedule:
9+
- cron: '30 20 * * *' # Warning: Timezone dep - 20:00 is 1:00
10+
311
permissions:
412
contents: read
513
pages: write

.github/workflows/emscripten.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Emscripten
22
on:
3+
pull_request:
4+
branches: [main]
35
push:
46
branches: [main]
57
release:

.github/workflows/markdown-linter.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
---
22
name: Markdown-Linter
33

4+
on:
5+
pull_request:
6+
branches: [main]
7+
paths:
8+
- '**.md'
9+
410
concurrency:
511
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
612
cancel-in-progress: true

0 commit comments

Comments
 (0)