Improve description and examples of functions and sets (#42) #43
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: Test Python | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -el {0} # Essential for Conda environment activation | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: conda-incubator/setup-miniconda@v4 | |
| with: | |
| activate-environment: mathoptformat | |
| environment-file: python/environment.yml | |
| - run: python -m pytest ./python/run_pulp.py | |
| - run: python ./python/mof.py |