GAR Refactor and explicit charge conservation. #19
Workflow file for this run
This file contains hidden or 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: Test notebooks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.12" | |
| - name: Install gfortran | |
| run: | | |
| sudo apt-get -y update | |
| sudo apt-get -y install gfortran | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pytest nbmake pytest-xdist jupyter | |
| - name: Install package in editable mode | |
| run: | | |
| pip install . | |
| - name: Test notebooks | |
| run: | | |
| pytest -n auto --nbmake --nbmake-timeout=2400 --nbmake-kernel=python3 notebooks | |