Skip to content

build(deps): Bump lewagon/wait-on-check-action from 1.4.1 to 1.5.0 #502

build(deps): Bump lewagon/wait-on-check-action from 1.4.1 to 1.5.0

build(deps): Bump lewagon/wait-on-check-action from 1.4.1 to 1.5.0 #502

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit Testing
on:
push:
branches: [main, 5.0, 4.2, 3.4]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
unit-tests:
# runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13", "3.14"]
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --frozen
- name: pytest
run: |
env PYTHONPATH=src exabgp_log_enable=false uv run pytest --cov --cov-reset ./tests/unit/test_*.py ./tests/fuzz/test_*.py