Remove limit on jupyter client #197
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: conda-build-test | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: continuumio/miniconda3:4.10.3 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up conda | |
run: | | |
apt-get --allow-releaseinfo-change update | |
apt install -y libgl1-mesa-glx | |
conda install -y anaconda-client conda-build | |
conda config --set anaconda_upload no | |
- name: Build and test | |
env: | |
GIT_DESCRIBE_TAG: 0.1 | |
run: | | |
conda build conda -c fusion-energy -c cadquery -c conda-forge --config-file conda/conda_build_config.yaml |