Skip to content

Commit

Permalink
Try meson build steps on non-Windows systems
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Dec 8, 2024
1 parent 1e349a0 commit b1e12c6
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,21 @@ jobs:
conda info
conda list
- name: Build and install package
# - name: Build and install package
# run: |
# pip install .[dev]

- name: Configure Meson project
run: |
meson setup build --prefix $CONDA_PREFIX
- name: Build project
run: |
meson compile -C build
- name: Install project
run: |
pip install .[dev]
meson install -C build
- name: Test import
working-directory: ${{ github.workspace }}/examples
Expand Down

0 comments on commit b1e12c6

Please sign in to comment.