Skip to content

Upgrade build system #8

Upgrade build system

Upgrade build system #8

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, macos-14, ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python v${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install -r requirements.txt progress
- name: Install phyde
run: python3 -m pip install .
- name: Run tests
run: |
cd test
python3 test.py