Skip to content

Update

Update #115

Workflow file for this run

name: Python test
on:
push:
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
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