Skip to content

docs: CONTRIBUTING.md #26

docs: CONTRIBUTING.md

docs: CONTRIBUTING.md #26

Workflow file for this run

name: pytest
on:
push:
jobs:
test:
name: "pytest"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./libertai_agents
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install -E test
- name: Run tests with coverage report
run: poetry run pytest --cov-report=xml --junitxml=junit.xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}