Skip to content

Commit

Permalink
use build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Oct 6, 2023
1 parent d4d326c commit 95d1fa1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/nanobind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ jobs:

- name: Configure ${{ matrix.args }}
run: >
cmake -S . -B . ${{ matrix.args }}
cmake -S . -B build ${{ matrix.args }}
- name: Build
run: cmake --build . -j 2
run: cmake --build build -j 2

- name: Test
run: python -m pytest
- name: Run tests
run: >
cd build;
python -m pytest

0 comments on commit 95d1fa1

Please sign in to comment.