Skip to content

clarify README

clarify README #11

Workflow file for this run

name: Tests
on:
push:
branches: [ master ] # Adjust the branch name as needed
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
# pip install -r requirements.txt
# pip install pytest # Install your testing dependencies
- name: Run tests
run: |
pytest