Skip to content

which where

which where #40

Workflow file for this run

name: "Pip"
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
build:
name: Build with Pip
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.8", "3.11", "3.12", "pypy-3.8"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: first check
run: where cl
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.16.x'
- name: second check
run: where cl
- uses: seanmiddleditch/gha-setup-ninja@master
- name: third check
run: where cl
- name: Build and install
run: pip install --verbose .
- name: Test
run: python src/python/tests/tests.py