Update tests.yml #249
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
Testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
#repository: my-org/main | |
path: mw-lib | |
- name: Light unit tests | |
uses: snakemake/[email protected] | |
with: | |
directory: 'mw-lib' | |
snakefile: 'mw-lib/Snakefile' | |
args: '--cores 1 --use-conda light_unit_tests' | |
- name: Heavy unit tests | |
uses: snakemake/[email protected] | |
with: | |
directory: 'mw-lib' | |
snakefile: 'mw-lib/Snakefile' | |
args: '--cores 1 --use-conda --dag heavy_unit_tests' | |
- name: Integration tests | |
uses: snakemake/[email protected] | |
with: | |
directory: 'mw-lib' | |
snakefile: 'mw-lib/Snakefile' | |
args: '--cores 1 --use-conda --dag integration_tests' |