Skip to content

fix typo about the bounds of inputs in exercise 4 and 8 problem descr… #55

fix typo about the bounds of inputs in exercise 4 and 8 problem descr…

fix typo about the bounds of inputs in exercise 4 and 8 problem descr… #55

Workflow file for this run

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'