Skip to content

Optimizing version matrices in noxfile. #181

Optimizing version matrices in noxfile.

Optimizing version matrices in noxfile. #181

Workflow file for this run

name: Coverage
on: [push]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
architecture: x64
- name: Install Root Dependencies
run: pip install nox poetry
- name: Generate Coverage Report
run: nox --session "tests-3.11(spacy='3.7.4', rapidfuzz='3.6.2')" -- --cov --cov-report=xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml