Skip to content

Merge pull request #238 from Gurobi/dependabot/pip/main/gurobipy-pand… #560

Merge pull request #238 from Gurobi/dependabot/pip/main/gurobipy-pand…

Merge pull request #238 from Gurobi/dependabot/pip/main/gurobipy-pand… #560

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build and test
on:
push:
branches:
- main
# Release branches
- "[0-9]+.[0-9]+.x"
- multinomial_logistic
permissions:
contents: read
jobs:
build_push:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
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 flake8 pytest tox tox-gh-actions
- name: install pandoc
run: |
sudo apt-get update && sudo apt-get install -y pandoc
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- shell: bash
id: write-license
env:
LICENSE: ${{ secrets.LICENSE }}
run: |
echo "$LICENSE" > $PWD/gurobi.lic
echo "grb_license_file=$PWD/gurobi.lic" >> $GITHUB_OUTPUT
- name: Test with tox
env:
GRB_LICENSE_FILE: ${{ steps.write-license.outputs.grb_license_file }}
run: |
tox
tox -e examples