Skip to content

TST: Add test

TST: Add test #3

Workflow file for this run

name: Test Build
on:
push:
branches: ["run-test/**"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu-22.04-arm
- macos-15
- macos-15-intel
- windows-2022
- windows-11-arm
python-version:
- "3.11"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install --verbose pyworld==0.3.5
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install "setuptools<82"
- name: Test with pytest
run: |
cd demo
python demo.py
cd ..