Skip to content

[feat]: updated doc deploy #121

[feat]: updated doc deploy

[feat]: updated doc deploy #121

Workflow file for this run

name: Python-Documents-Modifier Workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, '3.10' ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pytest-cov
- name: Install project dependencies
run: |
python -m pip install -r requirements.txt
- name: Run unittests
run: |
pytest --cov=src -s tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: LISA-ITMO/Python-Documents-Modifier