diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index c63bfdb..1afc28a 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -17,10 +17,14 @@ jobs: - uses: actions/checkout@v3 - name: Configure CMake - run: cmake . + run: | + mkdir build/ + cd build/ + cmake .. - name: Build + working-directory: build/ run: make - - name: Test + - name: Testg run: ./unit_test \ No newline at end of file