Skip to content

docs: add badges to README #7

docs: add badges to README

docs: add badges to README #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12.5"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install pytest-cov
run: pip install pytest-cov
- name: Run tests with coverage
run: pytest --cov=tests