Skip to content

Update README and examples #23

Update README and examples

Update README and examples #23

Workflow file for this run

name: Tests
on: ["push", "pull_request"]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install -U -r requirements_dev.txt
pip install -U -e .
- name: Run tests
run: |
make pytest
coverage lcov -o .coverage.lcov
# - name: Coveralls Parallel
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.github_token }}
# path-to-lcov: ./.coverage.lcov
# flag-name: run-${{ matrix.os }}-${{ matrix.python }}
# parallel: true
#
# finish:
# needs: test
# runs-on: ubuntu-latest
# steps:
# - name: Coveralls Finished
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.github_token }}
# path-to-lcov: ./.coverage.lcov
# parallel-finished: true