Skip to content

Commit 63fd04e

Browse files
committed
ALP CLI
1 parent 1148d3f commit 63fd04e

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/CI.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
name: ALP CI
22
run-name: ${{ github.actor }} is running the ALP CI
33

4-
on: push
4+
on:
5+
push: # Trigger on any push
6+
branches:
7+
- "*" # All branches
8+
pull_request: # Trigger on any pull request
9+
branches:
10+
- "*" # All branches
511

612
jobs:
713
# Format Check Job
@@ -27,7 +33,7 @@ jobs:
2733
steps:
2834
- uses: actions/checkout@v4
2935

30-
- name: Set Up CMake
36+
- name: Set Up Build Directory
3137
run: mkdir build
3238

3339
- name: Configure CMake
@@ -56,7 +62,7 @@ jobs:
5662
steps:
5763
- uses: actions/checkout@v4
5864

59-
- name: Set Up CMake
65+
- name: Set Up Build Directory
6066
run: mkdir build
6167

6268
- name: Configure CMake with Benchmarking
@@ -74,7 +80,7 @@ jobs:
7480
steps:
7581
- uses: actions/checkout@v4
7682

77-
- name: Set Up CMake
83+
- name: Set Up Build Directory
7884
run: mkdir build
7985

8086
- name: Configure CMake with Publication

0 commit comments

Comments
 (0)