-
Notifications
You must be signed in to change notification settings - Fork 57
54 lines (44 loc) · 1.09 KB
/
ci.yaml
File metadata and controls
54 lines (44 loc) · 1.09 KB
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
name: CI
on:
# push:
# branches: [master]
pull_request:
branches: [master]
# schedule:
# - cron: "0 5 * * 0"
env:
PREPARATION_COMMIT: '[github-actions.ci] update output data'
# Cancel any in-progress runs when a new run is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: CI
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v2
with:
micromamba-version: latest
environment-file: environment.yaml
log-level: debug
init-shell: bash
cache-environment: true
cache-downloads: true
- name: Run unit tests
run: |
make unit-test
- name: Test snakemake workflows
run: |
make test
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: ${{ github.ref_name }}
commit_message: '${{ env.PREPARATION_COMMIT }}'