Skip to content

Bump version to 0.8.0.2 (#538) #236

Bump version to 0.8.0.2 (#538)

Bump version to 0.8.0.2 (#538) #236

Workflow file for this run

name: Build Tick on Ubuntu
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
TICK_DEBUG: 0
TICK_WERROR: 0
jobs:
build:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
timeout-minutes: 90
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
with:
submodules: true
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: pip
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[dev]
python3 -m pip install pytest-timeout
- name: build
run: |
python3 -m build --wheel
- name: pytest
env:
PYTHONFAULTHANDLER: 1
run: |
python3 -m pytest -q --durations=50 --timeout=600