Skip to content

Fix cumulative bugs and add features #122

Fix cumulative bugs and add features

Fix cumulative bugs and add features #122

Workflow file for this run

name: Python test
on:
push:
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
jobs:
build:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
python-version: ['3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
pip install -r requirements.txt
pip install build
- name: Install package
run: pip install .
- name: Install PyTest
run: pip install pytest
- name: Test
run: pytest tests/main.py