Skip to content

Commit cb7cc63

Browse files
committed
Updated GHA python and nextflow versions
1 parent 6654bd6 commit cb7cc63

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
env:
2727
CAPSULE_LOG: none
2828
run: |
29-
curl -s https://get.nextflow.io | bash
29+
curl -fsSL https://github.com/nextflow-io/nextflow/releases/download/v24.10.4/nextflow -o nextflow | bash
3030
sudo mv nextflow /usr/local/bin/
3131
3232
- name: Make Nextflow binary executable
@@ -35,11 +35,12 @@ jobs:
3535
- name: Set up python
3636
uses: actions/setup-python@v2
3737
with:
38-
python-version: 3.9
38+
python-version: 3.11
3939
architecture: x64
4040

4141
- name: Install test requirements
42-
run: pip install -r requirements-dev.txt
42+
run: |
43+
pip install -r requirements-dev.txt
4344
4445
- name: Run tests
4546
run: pytest tests

0 commit comments

Comments
 (0)