you're all risk and no gain #401
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
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # important for Coveralls to read commit history | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' # because cvxopt binaries for 3.14 don't yet exist, and building is terrible | |
| - name: tests and coverage | |
| run: | # some extra stuff here to make sure coverage works across multiprocessing | |
| pip install -e .[advanced,dev] coveralls | |
| export COVERAGE_PROCESS_START=.coveragerc | |
| coverage run --source=pynumdiff -m pytest -s | |
| coverage combine | |
| coverage xml | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| format: cobertura | |
| file: coverage.xml |