-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (34 loc) · 1.04 KB
/
Check.yaml
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
on:
push:
branches: [main, stage, dev]
pull_request:
branches: [main, stage, dev]
workflow_dispatch:
name: Check
jobs:
audit:
name: Audit Dependencies 🕵️♂️
uses: insightsengineering/r.pkg.template/.github/workflows/audit.yaml@main
licenses:
name: License Check 🃏
uses: insightsengineering/r.pkg.template/.github/workflows/licenses.yaml@main
check-reuse:
name: RMD check 📦
uses: ./.github/workflows/R-CMD-check.yaml
test:
name: Test 🧪
uses: ./.github/workflows/Test.yaml
gitleaks:
name: gitleaks 💧
uses: insightsengineering/r.pkg.template/.github/workflows/gitleaks.yaml@main
with:
check-for-pii: true
vbump:
name: Version Bump 🤜🤛
if: github.event_name == 'push' && github.ref != 'refs/heads/main'
uses: insightsengineering/r.pkg.template/.github/workflows/version-bump.yaml@main
secrets:
REPO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# roxygen:
# name: Roxygen 📦
# uses: ./.github/workflows/Roxygen.yaml