fixed bug that leads to division by zero if total_fes == 2 in _check_max_time_millis #4
Workflow file for this run
This file contains 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: make build | |
on: | |
release: | |
types: [released] | |
jobs: | |
pypi-publish: | |
name: upload release to PyPI | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
# check out the github repository | |
- uses: actions/checkout@v4.1.6 | |
# set up python | |
- name: set up python "3.12" | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: "3.12" | |
# clean-up | |
- name: clean up | |
run: | | |
rm -rf /home/runner/work/moptipy/moptipy/docs/build/ | |
rm -rf /home/runner/work/moptipy/moptipy/dist | |
rm -rf /home/runner/work/moptipy/moptipy/build | |
# execute the actual make build process | |
- name: execute the make build | |
run: | | |
make | |
rm -rf /home/runner/work/moptipy/moptipy/dist/*.txt | |
rm -rf /home/runner/work/moptipy/moptipy/dist/*.tar.xz | |
# deploy to pypi | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |