fix typo about the bounds of inputs in exercise 4 and 8 problem descr… #55
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 env creation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test_env_creation: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ | |
| "windows-latest", | |
| "ubuntu-latest", | |
| "macos-14", # macOS arm64 | |
| "macos-13", # macOS x86_64 | |
| ] | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| # important for proper acivation of conda envs | |
| shell: bash -el {0} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install conda | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| activate-environment: mpc2025 | |
| python-version: 3.12 | |
| add-pip-as-python-dependency: true | |
| - name: Check pip is used from conda env | |
| run: which pip | |
| - name: Install dependencies | |
| run: pip install -r locked-requirements.txt --only-binary=pycddlib,mpt4py | |
| - name: test env | |
| run: python -c 'import mpt4py' |