Build on Linux using pip #3
Workflow file for this run
This file contains 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: Editable build using pip | |
on: push | |
permissions: read-all | |
env: | |
PACKAGE_NAME: mkl_fft | |
MODULE_NAME: mkl_fft | |
TEST_ENV_NAME: test_mkl_fft | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ['3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set pkgs_dirs | |
run: | | |
echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc | |
- name: Add conda to system path | |
run: echo $CONDA/bin >> $GITHUB_PATH | |
- name: Install MKL | |
run: conda install mkl-devel | |
- name: Build conda package | |
run: | | |
pip install --no-cache-dir cython pytest hypothesis | |
pip install --no-cache-dir numpy --pre | |
pip install -e . --no-build-isolation | |
pytest -m pytest/tests |