Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

new_version: v1.0.4 #18

new_version: v1.0.4

new_version: v1.0.4 #18

Workflow file for this run

name: Python Unit Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests (exclude stress)
run: |
python run_tests.py -v 2