Update bug template #543
Workflow file for this run
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.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@v4 | |
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 |