From f6afe34e1805f46118f5f1613f21c056bcf953db Mon Sep 17 00:00:00 2001 From: ctrlaltaf Date: Fri, 7 Jun 2024 09:41:57 -0700 Subject: [PATCH] testing --- .github/workflows/python-app.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 8f459c7..523bb5d 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -33,6 +33,12 @@ jobs: conda config --add pkgs_dirs ~/conda_pkgs_dir conda update -q conda + - name: Add conda channels + shell: bash + run: | + source "$HOME/miniconda/etc/profile.d/conda.sh" + conda config --add channels conda-forge + - name: Create and activate conda environment shell: bash run: | @@ -42,12 +48,12 @@ jobs: env: CONDA_PKGS_DIRS: ~/conda_pkgs_dir - - name: Install dependencies + - name: Check Python version shell: bash run: | source "$HOME/miniconda/etc/profile.d/conda.sh" conda activate protein-prediction - pip install pytest + python --version - name: Run tests shell: bash