Skip to content

Update configspace to 0.7.1 #404

Update configspace to 0.7.1

Update configspace to 0.7.1 #404

Workflow file for this run

name: tests
on: [ push ]
jobs:
pytest:
name: PyTest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Setup Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
conda install -c anaconda swig
make install-dev
- name: Run pytest
run: pytest tests