Skip to content

Commit

Permalink
CI: fix working directory problem
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilbouvier committed Mar 15, 2024
1 parent 869dc43 commit 9ca9d75
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@ jobs:
mkdir build
cd build
cmake -DINTERVAL_LIB=${{ matrix.interval_lib }} -DLP_LIB=${{ matrix.lp_lib }} ..
- run: make
- run: make check
- name: make
run: |
cd build
make
- name: make check
run: |
cd build
make check
strategy:
matrix:
interval_lib: [gaol, filib]
Expand Down

0 comments on commit 9ca9d75

Please sign in to comment.