feat: amino acid translation by nextclade #6
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: Poetry in Conda | |
on: | |
push: | |
branches: [ main ] # Or your main branch name | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
channels: conda-forge, bioconda | |
environment-file: environment.yml | |
activate-environment: myenv | |
- name: Install Poetry | |
run: | | |
source $(conda info --base)/etc/profile.d/conda.sh | |
conda activate myenv | |
conda install -c conda-forge poetry | |
- name: Install the module | |
run: | | |
source $(conda info --base)/etc/profile.d/conda.sh | |
conda activate myenv | |
poetry install --with dev --no-interaction | |
- name: Run unit tests | |
run: | | |
source $(conda info --base)/etc/profile.d/conda.sh | |
conda activate myenv | |
poetry run pytest |