Skip to content

feat(antenna): receive and echo pipeline config from NATS tasks #398

feat(antenna): receive and echo pipeline config from NATS tasks

feat(antenna): receive and echo pipeline config from NATS tasks #398

Workflow file for this run

name: Run tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
name: Run Python Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run tests
run: |
find . -type d -name "__pycache__" -exec rm -r {} +
find . -type f -name "*.pyc" -delete
uv run pytest --import-mode=importlib