Skip to content

feat(0.5.4): ai-news-daily skill reads sources from .prax/sources.yaml #40

feat(0.5.4): ai-news-daily skill reads sources from .prax/sources.yaml

feat(0.5.4): ai-news-daily skill reads sources from .prax/sources.yaml #40

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest -m "not eval" --cov=src/prax
- name: Upload coverage
uses: codecov/codecov-action@v3