Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jezsadler authored May 17, 2024
1 parent 63798c3 commit 175f613
Showing 1 changed file with 56 additions and 55 deletions.
111 changes: 56 additions & 55 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,57 @@
---
name: CI

on:
push:
branches: ["main","github-actions"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
- uses: "s-weigand/setup-conda@v1"
with:
python-version: "${{ matrix.python-version }}"

- name: Install solvers
run: sudo apt-get install -y glpk-utils coinor-cbc

- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
conda install -c conda-forge ipopt
conda install -c conda-forge pyscipopt
- name: "Run tox targets with lean testing environment for ${{ matrix.python-version }}"
run: "tox -re leanenv"

- name: "Run tox targets for ${{ matrix.python-version }}"
run: "tox"

# - name: "Run tox notebooks targets for ${{ matrix.python-version }}"
# run: |
# shopt -s globstar
# tox -e notebooks docs/**/*.ipynb

- name: "Convert coverage"
run: "python -m coverage xml"

- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v4"
with:
fail_ci_if_error: true
name: CI

on:
push:
branches: ["main","github-actions"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
- uses: "s-weigand/setup-conda@v1"
with:
python-version: "${{ matrix.python-version }}"

- name: Install solvers
run: sudo apt-get install -y glpk-utils coinor-cbc

- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
conda install -c conda-forge ipopt
conda install -c conda-forge pyscipopt
- name: "Run tox targets with lean testing environment for ${{ matrix.python-version }}"
run: "tox -re leanenv"

- name: "Run tox targets for ${{ matrix.python-version }}"
run: "tox"

# - name: "Run tox notebooks targets for ${{ matrix.python-version }}"
# run: |
# shopt -s globstar
# tox -e notebooks docs/**/*.ipynb

- name: "Convert coverage"
run: "python -m coverage xml"

- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v4"
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true

0 comments on commit 175f613

Please sign in to comment.