-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (48 loc) · 1.38 KB
/
test-snake.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Snakemake CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.11.2"]
poetry-version: ["1.8.3"]
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
# Run Super-Linter only on Snakefile and .smk files
- name: Lint Snakefiles Only
uses: github/super-linter/slim@v5
env:
VALIDATE_SNAKEMAKE_SNAKEFMT: true
FILTER_REGEX_INCLUDE: '(^Snakefile$|.*\.smk$)' # Only include Snakefile and .smk files
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.5.6-0'
environment-file: environment.yml
init-shell: >-
bash
cache-environment: true
post-cleanup: 'all'
- name: Install dependencies
run: |
pip install -e .
pip install pytest
- name: Snakemake Testing
run: |
pytest workflow/.tests