Skip to content

Commit

Permalink
added end-to-end-se.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
simonleandergrimm committed Dec 10, 2024
1 parent 034914b commit c5454b9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/end-to-end-se.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: End-to-end MGS workflow test for single-end run

on: [pull_request]

jobs:
test-run-dev-se:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Checkout
uses: actions/checkout@v4


- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'

- name: Setup Nextflow latest (stable)
uses: nf-core/setup-nextflow@v1
with:
version: "latest"

- name: Install nf-test
run: |
wget -qO- https://get.nf-test.com | bash
sudo mv nf-test /usr/local/bin/
- name: Run run_dev_se workflow
run: nf-test test --tag run_dev_se --verbose

0 comments on commit c5454b9

Please sign in to comment.