File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments