Skip to content

update toml

update toml #2

Workflow file for this run

name: Python Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
os: [windows-latest] # Chose windows-latest, ubuntu-latest, macos-latest.
python-version: ['3.9', '3.10', '3.11', '3.12'] # Test multiple Python versions
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
# Install
- name: Set up Python and Install Dependencies
run: |
python -m pip install --upgrade pip # Ensure pip is up to date
python -m pip install .[test] # Install the package with development dependencies from pyproject.toml
# Lint with Ruff
# - name: Lint with Ruff
# run: |
# ruff check . --statistics # Lint the code using Ruff
# Run pyest
- name: Run Tests
run: |
pytest