fix: Universal Reader and RetinaNet Normalization #93
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: conda-env | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
conda: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install libarchive20 | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libarchive20 | |
- name: Set up Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: 3.9 | |
environment-file: environment.yml | |
channels: conda-forge, defaults | |
auto-activate-base: true | |
activate-environment: base | |
- name: Configure Conda to Use Classic Solver | |
run: | | |
conda config --set solver_choice classic | |
- name: Install Mamba | |
run: conda install -c conda-forge mamba | |
- name: Install facetorch from conda-forge | |
run: | | |
conda install -c conda-forge facetorch | |
# Or, if using Mamba: | |
# mamba install -c conda-forge facetorch |