Skip to content

BLD: Try simplifying and updating CI #6

BLD: Try simplifying and updating CI

BLD: Try simplifying and updating CI #6

Workflow file for this run

name: test-python-api
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: [3.9]
steps:
- uses: actions/checkout@v3
- name: Install correct python version
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Test Python Interface
shell: bash
run: |
pip install .
pip install pytest
pytest -v ./highspy/tests/