Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgen-lentz committed Dec 8, 2024
1 parent c54a038 commit 9abcc05
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 56 deletions.
31 changes: 0 additions & 31 deletions .github/actions/setup-pyscipopt-action/action.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/actions/setup-scipoptsuite-action/action.yml

This file was deleted.

16 changes: 13 additions & 3 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on: [push]
jobs:
Build-Package-Linux:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -25,10 +28,17 @@ jobs:
export SCIPOPTDIR="$(pwd)/scip_install"
echo $SCIPOPTDIR
- name: Prepare Python Environment
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Prepare python environment
run: |
pip install -r dev/requirements.txt
python -m pip install --upgrade pip
python -m pip install cython pytest
python -m pip install pyscipopt==5.2.1 --no-binary=:all:
- name: Build & Install PyGCGOpt
run: |
pip install .
Expand Down

0 comments on commit 9abcc05

Please sign in to comment.