Skip to content

Commit

Permalink
Added steps to set up MOSEK license
Browse files Browse the repository at this point in the history
  • Loading branch information
ericahan22 committed Sep 29, 2023
1 parent aaa2c7b commit de91e5b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/python-unittest-ci.yml
Expand Up @@ -20,6 +20,12 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r ./requirements.txt
- name: Set up MOSEK license
env:
MOSEK_LICENSE_KEY: ${{ secrets.MOSEK_LICENSE_KEY }}
run: |
mkdir -p $HOME/mosek
echo "$MOSEK_LICENSE_KEY" > $HOME/mosek/mosek.lic
- name: Test with unittest
run: |
python -m unittest discover -s ./test -p 'test_*.py'

0 comments on commit de91e5b

Please sign in to comment.