Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ssi-dk/bifrost_chewbbaca
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskiil committed Nov 15, 2023
2 parents 7598782 + 12f1175 commit f74ae72
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/solve_conda_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Solve conda environment

on: [push]

jobs:
check-conda:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2

- name: Install conda dependencies
run: |
$CONDA/bin/conda env update --file environment.yml --name base
- name: Format with black
run: |
$CONDA/bin/black *.py
$CONDA/bin/black */*.py
- name: Check conda dependencies are compatible with the main program
run: |
$CONDA/bin/python --version
9 changes: 5 additions & 4 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ channels:
- bioconda
- defaults
dependencies:
- snakemake-minimal==5.31.1 # updated from 5.7.1 because of envvars
- blast==2.14.0 # updated from blast>=2.9
- prodigal==2.6.3
- chewbbaca==3.2.0
- snakemake-minimal>=5.31.1 # updated from 5.7.1 because of envvars
- blast>=2.14.0 # updated from blast>=2.9
- prodigal>=2.6.3
- chewbbaca>=3.2.0
- pip
- pip:
- pytest
Expand All @@ -17,4 +17,5 @@ dependencies:
- argh
- watchdog
- bifrostlib
- black
- -e .

0 comments on commit f74ae72

Please sign in to comment.