Skip to content

fix(docs): add echo statements for DOC_BUILD_VERSION during documenta… #1644

fix(docs): add echo statements for DOC_BUILD_VERSION during documenta…

fix(docs): add echo statements for DOC_BUILD_VERSION during documenta… #1644

Workflow file for this run

name: Continuous Integration with Models
on:
push:
branches:
- '**' # matches every branch
pull_request:
branches:
- '**' # matches every branch
#
#on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
test_linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.13" ]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
pip install -e .
- name: Test with pytest
run: |
pytest tests/
test_macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.13" ]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
pip install -e .
- name: Test with pytest
run: |
pytest tests/
test_windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.13" ]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
pip install -e .
- name: Test with pytest
run: |
pytest tests/