init version 0.5.0 #157
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: Build Package | |
on: [push] | |
jobs: | |
Build-Package-Linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Setup SCIPOptSuite | |
uses: ./.github/actions/setup-scipoptsuite-action | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements.txt | |
- name: Prepare Python Environment | |
run: | | |
pip install -r requirements.txt | |
- name: Build & Install PyGCGOpt | |
run: | | |
pip install . |