-
-
Notifications
You must be signed in to change notification settings - Fork 390
47 lines (44 loc) · 1.35 KB
/
pythonpackage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
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.11'
run: pip install xpress
- name: Install gurobipy
run: |
python -m pip install gurobipy
- name: Install highspy
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
run: |
pip install highspy numpy
- name: Install coptpy
run: |
pip install coptpy
- name: Test with pulptest
run: pulptest
- name: Code Quality
run: |
pip install black
black pulp/ --check