Skip to content

fix: Remove Python 3.9 support #3

fix: Remove Python 3.9 support

fix: Remove Python 3.9 support #3

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
- name: Run tests with coverage report
run: poetry run pytest --cov-report=xml
# - name: Upload coverage to Codecov
# if: success()
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: ./coverage.xml