Skip to content

fix: update to envs/ conda build for precompiled M1 installs #452

fix: update to envs/ conda build for precompiled M1 installs

fix: update to envs/ conda build for precompiled M1 installs #452

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
# [macos-latest, macos-latest, windows-latest]
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy2 and pypy3
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
pip install -U pip
pip install -U setuptools
python -m pip install .[test]
python setup.py build_ext --inplace
- name: Test with pytest
run: pytest -vs tests/ --cov causalml/