Skip to content

Commit ebf6309

Browse files
authored
Merge pull request nf-core#547 from ewels/sync-action-install-nextflow
GitHub Actions: Install Nextflow for sync
2 parents 397b886 + 7d09846 commit ebf6309

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/sync.yml

+7
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ jobs:
2222
python -m pip install --upgrade pip
2323
pip install .
2424
25+
- name: Install Nextflow
26+
run: |
27+
mkdir /tmp/nextflow
28+
cd /tmp/nextflow
29+
wget -qO- get.nextflow.io | bash
30+
sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
31+
2532
- name: Run synchronisation
2633
if: github.repository == 'nf-core/tools'
2734
env:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Travis CI tests are now deprecated in favor of GitHub Actions within the pipeline template.
88
* `nf-core bump-version` support has been removed for `.travis.yml`
99
* `nf-core lint` now fails if a `.travis.yml` file is found
10-
* Ported nf-core/tools Travis CI automation to GitHub Actions
10+
* Ported nf-core/tools Travis CI automation to GitHub Actions.
1111
* Fixed the build for the nf-core/tools API documentation on the website
1212

1313
### Template

0 commit comments

Comments
 (0)