Skip to content

CI

CI #1

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '**/src/**'
- '**/tests/**'
pull_request:
branches:
- main
paths:
- '**/src/**'
- '**/tests/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11.x
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest --cov --cov-report html