Skip to content

Commit

Permalink
reorder installations in workdir
Browse files Browse the repository at this point in the history
  • Loading branch information
jashapiro committed Nov 7, 2024
1 parent d95a091 commit 9fe8416
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/run_metacells.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,6 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4

- name: Set up conda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest

- name: Install and activate locked conda environment
run: |
conda install conda-lock
conda-lock install --name openscpca-metacells ${MODULE_PATH}/conda-lock.yml
conda activate openscpca-metacells
- name: Set up R
uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -66,6 +55,17 @@ jobs:
with:
working-directory: ${{ env.MODULE_PATH }}

- name: Set up conda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
activate-environment: "openscpca-metacells"

- name: Install locked conda environment
run: |
conda install conda-lock
conda-lock install --name openscpca-metacells ${MODULE_PATH}/conda-lock.yml
# Downloading just one sample for initial testing
- name: Download test data
run: ./download-data.py --test-data --format AnnData --sample SCPCS000001
Expand Down

0 comments on commit 9fe8416

Please sign in to comment.