Skip to content

chore: Remove pywin32 dependency due to Python version incompatibility #2

chore: Remove pywin32 dependency due to Python version incompatibility

chore: Remove pywin32 dependency due to Python version incompatibility #2

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