Add ModelQuantity.get_sym, make ModelQuantity.get_id return str
#9919
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: Documentation Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '48 4 * * *' | |
| jobs: | |
| doxygen: | |
| name: Test Doxygen | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| python-version: ["3.11"] | |
| steps: | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: actions/checkout@v5 | |
| - run: git fetch --prune --unshallow | |
| - name: Set up doxygen | |
| uses: ./.github/actions/setup-doxygen | |
| - name: Run doxygen | |
| run: scripts/run-doxygen.sh | |
| sphinx: | |
| name: Test Sphinx | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| python-version: [ "3.11" ] | |
| steps: | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: actions/checkout@v5 | |
| - run: git fetch --prune --unshallow | |
| - run: echo "AMICI_DIR=$(pwd)" >> $GITHUB_ENV | |
| - name: Set up doxygen | |
| uses: ./.github/actions/setup-doxygen | |
| - name: Install apt dependencies | |
| uses: ./.github/actions/install-apt-dependencies | |
| - name: Install further dependencies | |
| run: | | |
| sudo apt-get update \ | |
| && sudo apt-get install -y \ | |
| pandoc \ | |
| && pip install tox | |
| - name: Set up SWIG | |
| uses: ./.github/actions/setup-swig | |
| - name: Run sphinx | |
| run: tox -e doc |