We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6654bd6 commit cb7cc63Copy full SHA for cb7cc63
.github/workflows/run_tests.yml
@@ -26,7 +26,7 @@ jobs:
26
env:
27
CAPSULE_LOG: none
28
run: |
29
- curl -s https://get.nextflow.io | bash
+ curl -fsSL https://github.com/nextflow-io/nextflow/releases/download/v24.10.4/nextflow -o nextflow | bash
30
sudo mv nextflow /usr/local/bin/
31
32
- name: Make Nextflow binary executable
@@ -35,11 +35,12 @@ jobs:
35
- name: Set up python
36
uses: actions/setup-python@v2
37
with:
38
- python-version: 3.9
+ python-version: 3.11
39
architecture: x64
40
41
- name: Install test requirements
42
- run: pip install -r requirements-dev.txt
+ run: |
43
+ pip install -r requirements-dev.txt
44
45
- name: Run tests
46
run: pytest tests
0 commit comments