Skip to content

IDE-25308 - OTF support #3

IDE-25308 - OTF support

IDE-25308 - OTF support #3

Workflow file for this run

name: CI Unit Tests
on:
push:
branches:
- main
- 'releases/**'
pull_request:
branches:
- main
- 'releases/**'
workflow_dispatch:
jobs:
unit-tests:
name: Unit tests (${{ matrix.os }} / Python ${{ matrix.python }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Run unit tests
shell: bash
run: |
pytest tests/unit/ -v