We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ffac55 commit 6512832Copy full SHA for 6512832
.github/workflows/build.yml
@@ -7,20 +7,16 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
max-parallel: 5
10
+ defaults:
11
+ run:
12
+ shell: bash -el {0}
13
14
steps:
15
- uses: actions/checkout@v4
- - name: Set up Python 3.10
- uses: actions/setup-python@v5
16
+ - uses: conda-incubator/setup-miniconda@v3
17
with:
- python-version: '3.9'
- - name: Add conda to system path
18
- run: |
19
- # $CONDA is an environment variable pointing to the root of the miniconda directory
20
- echo $CONDA/bin >> $GITHUB_PATH
21
- - name: Setup Conda environment
22
23
- conda env update --file environment.yml --name base
+ activate-environment: rnaseq-pipeline
+ environment-file: environment.yml
24
- name: Install package
25
run: |
26
pip install .[gsheet,webviewer]
0 commit comments