Skip to content

Commit

Permalink
Add missing CMake configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Kniggebrot committed Oct 21, 2024
1 parent fdd5530 commit 73e8463
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build+test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- name: Make build dir
run: mkdir -p "${{ github.workspace }}/build"
- name: Build with CMAKE
run: cmake --build "${{ github.workspace }}/build" --target ccronexpr
run: |
cmake .
cmake --build "${{ github.workspace }}/build" --target ccronexpr
- name: Run test executable
run: "${{ github.workspace }}/build/ccronexpr"

0 comments on commit 73e8463

Please sign in to comment.