Skip to content

oops™

oops™ #4

Workflow file for this run

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