Skip to content

ci: don't timeout if the runner is slow to pick up the job #6295

ci: don't timeout if the runner is slow to pick up the job

ci: don't timeout if the runner is slow to pick up the job #6295

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
# TODO: enable this
#env:
# PYTHONWARNINGS: error,default::DeprecationWarning
jobs:
unit-tests:
name: unit tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: maxime-desroches/timeout@master
- name: install uv and dependencies
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
# TODO: remove setuptools once https://github.com/cython/cython/issues/5751 is fixed
uv pip install -e .[testing,docs] setuptools
- run: uv run scons -j8
- run: uv run pytest .
static-analysis:
name: static analysis
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: maxime-desroches/timeout@master
- run: sudo apt install --no-install-recommends -y cppcheck
- name: setup python
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
uv pip install -e . pre-commit
- name: cache pre-commit environments
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: |
${{ runner.os }}-pre-commit-
- run: uv run pre-commit run --all