Add new modules to README and add Usage Python Doc #75
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # Check all PR | |
| schedule: | |
| # check once a week on mondays | |
| - cron: '0 10 * * 1' | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }} / Python ${{ matrix.python-version }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04 | |
| python-version: "3.11" | |
| - os: ubuntu-24.04 | |
| python-version: "3.14" | |
| - os: macos-15 | |
| python-version: "3.14" | |
| - os: windows-2025 | |
| python-version: "3.14" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| check-latest: true | |
| - run: python -m pip install tox coverage[toml] | |
| - name: run Python tests | |
| run: | | |
| tox -e tests | |
| coverage xml | |
| - name: upload to codecov.io | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: true | |
| files: tests/coverage.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |