Skip to content

chore: 🔧 update requirements.txt #21

chore: 🔧 update requirements.txt

chore: 🔧 update requirements.txt #21

Workflow file for this run

name: Codecov
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ["3.10", "3.11"]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest pytest-cov codecov
pip install -r requirements.txt
pip install -e .
- name: Test with pytest
run: |
pytest --cov=./ --cov-report=xml
- name: test
run: |
pwd
ls
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true