Skip to content

Commit f995d6f

Browse files
committed
Add GitHub workflow for SciPipe
1 parent 6cf688a commit f995d6f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/scipipe.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Test-SciPipe
2+
3+
on:
4+
push:
5+
branches: [ master, add-scipipe ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
Testing:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out the code
14+
uses: actions/checkout@v2
15+
16+
- name: Setup Go
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: '1.16.6'
20+
21+
- name: Install bioinformatics tools
22+
run: sudo apt-get install salmon fastqc -y
23+
24+
- name: Tests
25+
run: |
26+
cd scipipe && go run example.go \
27+
-left $PWD/../test_data/reads_1.fq.gz \
28+
-right $PWD/../test_data/reads_2.fq.gz \
29+
-ref $PWD/../test_data/transcriptome.fa \
30+
-outdir $PWD/results

0 commit comments

Comments
 (0)