Skip to content

Commit

Permalink
Install GeNN in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Jul 26, 2023
1 parent 2909f02 commit aaa7a66
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,18 @@ jobs:
activate-environment: 'test_env'
python-version: ${{ matrix.python-version }}

- name: Install GeNN
run: |
# clone GeNN from github
git clone --depth=1 --no-single-branch https://github.com/genn-team/genn.git ../genn
cd ../genn
echo "GENN_PATH=$(pwd)" >> "$GITHUB_ENV"
# switch to stable release
git checkout 4.8.0
- name: Install Brian2 and dependencies
run: |
conda install -n test_env --quiet --yes -c conda-forge pip pytest cython sympy future pyparsing numpy jinja2 six scipy sphinx gsl coverage
conda install -n test_env --quiet --yes -c conda-forge pip pytest cython sympy pyparsing numpy jinja2 scipy sphinx
pip install .
- name: Run Tests
Expand Down

0 comments on commit aaa7a66

Please sign in to comment.