Skip to content

feat: update lems scripts to include version and commit information #143

feat: update lems scripts to include version and commit information

feat: update lems scripts to include version and commit information #143

Workflow file for this run

name: Test build pull requests
on:
pull_request:
branches: [ main, master, development ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Set up JDK 11 for jNeuroML etc
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# pip install -r requirements.txt
pip install -r requirements-book.txt
sudo apt-get install build-essential
- name: Disable building jupyter-books
run: |
sed -i "s/execute_notebooks.*/execute_notebooks: 'off'/" source/_config.yml
- name: Run jupyter-book
run: |
jupyter-book clean ./source
jupyter-book build ./source