Add SAS API interface (#729) #697
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 21 | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
exclude: | |
- os: macOS-latest | |
python-version: '3.7' | |
- os: macOS-latest | |
python-version: '3.8' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Code Quality | |
if: matrix.python-version != '3.7' | |
run: | | |
pip install black | |
black pulp/ --check | |
- name: Install dependencies | |
run: | | |
pip install . | |
- name: install glpk | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -qq glpk-utils | |
- name: install xpress | |
if: matrix.os != 'macOS-latest' && matrix.python-version != '3.12' | |
run: pip install xpress | |
- name: Install gurobipy | |
run: | | |
python -m pip install gurobipy | |
- name: Install highspy | |
if: matrix.python-version != '3.12' | |
# alternatively if: contains(fromJSON("['3.7', '3.8', '3.9', '3.10', '3.11']"), matrix.python-version) | |
run: | | |
pip install highspy numpy | |
- name: Install highspy cmd | |
if: matrix.os == 'ubuntu-latest' | |
uses: supplypike/setup-bin@v4 | |
with: | |
uri: 'https://github.com/JuliaBinaryWrappers/HiGHSstatic_jll.jl/releases/download/HiGHSstatic-v1.7.1%2B0/HiGHSstatic.v1.7.1.x86_64-linux-gnu-cxx11.tar.gz' | |
subPath: 'bin' | |
name: 'highs' | |
version: '1.7.1' | |
- name: Install coptpy | |
run: | | |
pip install coptpy | |
- name: Install saspy | |
run: | | |
pip install saspy | |
- name: Install swat | |
run: | | |
pip install swat | |
- name: Test with pulptest | |
run: pulptest |