Skip to content

Migrate to Read the Docs #104

Migrate to Read the Docs

Migrate to Read the Docs #104

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: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install packaging tools
run: pip install setuptools wheel twine
- name: Install PyTest
run: pip install pytest
- name: Install package
run: pip install .
- name: Test
run: pytest test/main.py