Skip to content

docs: update readme.md #5

docs: update readme.md

docs: update readme.md #5

Workflow file for this run

name: Pipeline
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.12.0'
- name: Poetry Install
run: pip install poetry
- name: Install project without documentation
run: poetry install --without doc
- name: Run tests
run: poetry run task test --cov-report=xml
- name: codecov action
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}