Make PyAirtable optional (#1245) #658
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: Install Ersilia | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
base: | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Ersilia | |
run: | | |
python -m pip install git+https://github.com/ersilia-os/bentoml-ersilia.git | |
python -m pip install -e . | |
- name: Test help command | |
run: | | |
ersilia --help | |
ersilia --version | |
test-docker: | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Ersilia without pre-installing BentoML | |
run: | | |
python -m pip install -e . | |
- name: Test help command again | |
run: | | |
ersilia --help | |
ersilia --version | |
- name: Fetch molecular weight model from DockerHub | |
run: | | |
ersilia -v fetch molecular-weight --from_dockerhub | |
test-os: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v3.5.3 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: "3.10.10" | |
- name: Install dependencies | |
run: | | |
conda install git-lfs -c conda-forge | |
git-lfs install | |
conda install gh -c conda-forge | |
- name: Install ersilia from source | |
run: | | |
python --version | |
python -m pip install -e . | |
- name: Ersilia help | |
run: | | |
ersilia --help |