generated from mrvollger/SmkTemplate
-
Notifications
You must be signed in to change notification settings - Fork 3
30 lines (27 loc) · 848 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main, master]
pull_request:
branches: [main, master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: make
#- name: build application
- name: Test workflow
uses: snakemake/snakemake-github-action@v1.23.0
with:
directory: .
snakefile: workflow/Snakefile
args: "--use-conda --cores 6 --configfile .test/config.yaml"