Skip to content

more checking

more checking #37

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"]
# include:
# - os: windows-latest
# cc: gcc
# cxx: g++
# shell: 'msys2 {0}'
runs-on: ${{ matrix.os }}

Check failure on line 24 in .github/workflows/pip.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pip.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
defaults:
run:
shell: ${{ matrix.shell }}
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
ARCH: ${{ matrix.arch }}
CMAKE_ARGS: ${{ matrix.cmake_args }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.16.x'
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Build and install
run: pip install --verbose .
- name: Test
run: python src/python/tests/tests.py