Skip to content

Commit

Permalink
Merge pull request #547 from ewels/sync-action-install-nextflow
Browse files Browse the repository at this point in the history
GitHub Actions: Install Nextflow for sync
  • Loading branch information
ewels authored Feb 20, 2020
2 parents 397b886 + 7d09846 commit ebf6309
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
python -m pip install --upgrade pip
pip install .
- name: Install Nextflow
run: |
mkdir /tmp/nextflow
cd /tmp/nextflow
wget -qO- get.nextflow.io | bash
sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
- name: Run synchronisation
if: github.repository == 'nf-core/tools'
env:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Travis CI tests are now deprecated in favor of GitHub Actions within the pipeline template.
* `nf-core bump-version` support has been removed for `.travis.yml`
* `nf-core lint` now fails if a `.travis.yml` file is found
* Ported nf-core/tools Travis CI automation to GitHub Actions
* Ported nf-core/tools Travis CI automation to GitHub Actions.
* Fixed the build for the nf-core/tools API documentation on the website

### Template
Expand Down

0 comments on commit ebf6309

Please sign in to comment.