Remove Conda recipe from source repo #139
Workflow file for this run
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: Build and Test - Python 3.10 | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Activate env | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniforge-variant: Mambaforge | |
environment-file: conda_envs/pypi-build-py310.yml | |
activate-environment: qeb-pypi-build-py310 | |
- name: Build wheel | |
run: ./scripts/rebuild.sh | |
- name: Install and run tests | |
run: | | |
pip install --force-reinstall dist/quasielasticbayes-*.whl | |
pytest quasielasticbayes/test |