Skip to content

updated readme

updated readme #25

Workflow file for this run

name: Tests
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
tests:
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-cov pre-commit
pip install -e .
- name: Run linting
run: pre-commit run -a
- name: Run unit tests
run: python -m pytest --cov tki/ --cov-report=xml
- uses: codecov/codecov-action@v3