Skip to content

Commit 2364b1b

Browse files
committed
Fix bug in workflow
1 parent aca0e58 commit 2364b1b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-cmake.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- run: "Job was automatically triggered by a ${{ github.event_name }} event."
10-
- uses: actions/checkout@v4
11-
- run: "Building branch ${{ github.ref }} from repo ${{ github.repository }}"
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
run: "Building branch ${{ github.ref }} from repo ${{ github.repository }}"
1212
- name: Configure with CMake
13-
- run: cmake -B ${{github.workspace}}/build
13+
run: cmake -B ${{github.workspace}}/build
1414
- name: Build main project
15-
- run: cmake --build ${{github.workspace}}/build
15+
run: cmake --build ${{github.workspace}}/build
1616
- name: Build tests
17-
- run: cmake --build ${{github.workspace}}/build --target tests
17+
run: cmake --build ${{github.workspace}}/build --target tests
1818
- name: Run tests
19-
- run: ctest --test-dir ${{github.workspace}}/build/src
19+
run: ctest --test-dir ${{github.workspace}}/build/src
2020

0 commit comments

Comments
 (0)