Update env-build.yml #3
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: CPU Environment Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: '3.8' | |
activate-environment: rtfm | |
- name: Create conda environment | |
run: conda env create -f environment.yml | |
- name: Update conda | |
run: conda update -n base -c defaults conda | |
- name: Install additional package | |
run: conda run -n rtfm pip install --no-deps git+https://github.com/mlfoundations/tableshift.git |