Skip to content

build: Bootstrap agent-ready infrastructure #1

build: Bootstrap agent-ready infrastructure

build: Bootstrap agent-ready infrastructure #1

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [main, master]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12', '3.13']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run black
run: |
black --check .
- name: Run isort
run: |
isort --check .
- name: Run ruff
run: |
ruff check .
- name: Run pytest
run: |
pytest --cov=src --cov-report=xml --cov-report=term
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.11' with:

Check failure on line 48 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 48
files: ./coverage.xml
fail_ci_if_error: false