Skip to content

Commit

Permalink
fix(pipeline): config for build
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealPad committed Feb 28, 2024
1 parent 2b354da commit 886c06a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 886c06a

Please sign in to comment.