oops™ #4
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: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build_wheel: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest", "macos-latest"] #, "windows-latest"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install conda | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| python-version: 3.12 | |
| - 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 |