-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (36 loc) · 1001 Bytes
/
shared_ci.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
---
name: Checks 🧩
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
workflow_call:
jobs:
check:
name: Check 📦
uses: boehringer-ingelheim/dv.templates/.github/workflows/check.yml@main
test:
name: Test and QC 🧪
uses: boehringer-ingelheim/dv.templates/.github/workflows/test.yml@main
lintr:
name: Lintr 🔍
uses: boehringer-ingelheim/dv.templates/.github/workflows/lintr.yml@main
with:
lintr_error_on_lint: true
roxygen:
name: Roxygen 📄
uses: boehringer-ingelheim/dv.templates/.github/workflows/roxygen.yml@main
pkgdown:
name: Pkgdown 📖
uses: boehringer-ingelheim/dv.templates/.github/workflows/pkgdown.yml@main
needs: test
styler:
name: Styler 🌐
uses: boehringer-ingelheim/dv.templates/.github/workflows/styler.yml@main
release:
name: Release 📈
uses: boehringer-ingelheim/dv.templates/.github/workflows/release.yml@main