Skip to content

Commit

Permalink
Don't use shell script for CI runs, doesn't work on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Long committed Aug 19, 2022
1 parent d4fed91 commit 4884422
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/verify_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ jobs:
- uses: actions/checkout@v3
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Build
run: ./buildandtest
run: |
mkdir build
cmake -GNinja -B build
cmake --build build
ctest --test-dir build --output-on-failure

0 comments on commit 4884422

Please sign in to comment.