Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 71c0326

Browse files
author
Daniel
authored
Update lint_and_test.yml
1 parent 8b77955 commit 71c0326

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/lint_and_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ jobs:
2020
run: sudo apt-get update && sudo apt-get install libpcl-dev
2121

2222
- name: Configure CMake
23-
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=install
23+
run: cmake -B build -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=install
2424

2525
- name: Build app
26-
run: cmake --build ${{github.workspace}}/build --config $BUILD_TYPE
26+
run: cmake --build build --config $BUILD_TYPE
2727

2828
- name: Install app
2929
run: cmake --install build
3030

3131
- name: Test app
32-
run: ${{github.workspace}}/build/app
32+
run: build/app
3333

3434
- name: Store artifact
3535
uses: actions/upload-artifact@master
3636
with:
3737
name: build
38-
path: ${{github.workspace}}/install
38+
path: install
3939

4040
lint:
4141
needs: [build]

0 commit comments

Comments
 (0)