We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cf688a commit f995d6fCopy full SHA for f995d6f
.github/workflows/scipipe.yml
@@ -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