This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
generated from insightsengineering/r.pkg.template
-
Notifications
You must be signed in to change notification settings - Fork 0
152 lines (140 loc) · 5.17 KB
/
style.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
---
name: Style 🎽
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
workflow_dispatch:
workflow_call:
inputs:
auto-update:
description: If R code style is not up-to-date, styling will automatically be applied and restyled files will be automatically committed o the branch.
required: false
default: false
type: boolean
package-subdirectory:
description: Subdirectory in the repository, where the R package is located.
required: false
type: string
default: "."
concurrency:
group: style-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
style:
name: Check code style 🔠
runs-on: ubuntu-latest
if: >
!contains(github.event.commits[0].message, '[skip style]')
&& github.event.pull_request.draft == false
container:
image: ghcr.io/insightsengineering/rstudio:latest
steps:
- name: Checkout Code 🛎
uses: actions/checkout@v4
with:
path: ${{ github.event.repository.name }}
fetch-depth: 0
- name: Get branch names 🌿
if: inputs.auto-update
id: branch-name
uses: tj-actions/branch-names@v7
- name: Install styler 👚
run: |
install.packages("styler", repos = "https://cloud.r-project.org")
shell: Rscript {0}
- name: Get changed files 🗞
id: changed-files
uses: tj-actions/changed-files@v41
with:
path: ${{ github.event.repository.name }}
separator: ","
files: |
**/*.R
**/*.Rmd
**/*.Rnw
**/*.Rmarkdown
**/*.qmd
continue-on-error: true
- name: Run styler 👟
run: |
changed_files <- unlist(strsplit(
"${{ steps.changed-files.outputs.all_changed_files }}",
split=","
))
is_r_file <- function(x) {
ext <- tools::file_ext(x)
ext %in% c("R", "Rmd", "Rnw", "Rmarkdown", "qmd")
}
changed_r_files <- Filter(is_r_file, changed_files)
dry <- if(isTRUE(as.logical("${{ inputs.auto-update }}"))) "off" else "on"
detect <- styler::style_file(changed_r_files, dry = dry)
if (TRUE %in% detect$changed) {
problems <- subset(detect$file, detect$changed == T)
dput(problems, file = "/tmp/style-problems.R")
writeLines(
problems,
con = "/tmp/style-problems.txt",
sep = " "
)
}
shell: Rscript {0}
working-directory: ${{ github.event.repository.name }}/${{ inputs.package-subdirectory }}
- name: Check file existence 🤔
id: check_files
uses: andstor/file-existence-action@v2
with:
files: "/tmp/style-problems.R, /tmp/style-problems.txt"
- name: Get problematic files 🧟♂️
id: problem-files
if: steps.check_files.outputs.files_exists == 'true'
run: |
perl -p -i -e 's/\R//g;' /tmp/style-problems.R
echo "unstyled-files=$(cat /tmp/style-problems.txt)" >> $GITHUB_OUTPUT
shell: bash
- name: Autocommit styled files ↗️
id: autocommit-styled-files
if: >
inputs.auto-update
&& steps.check_files.outputs.files_exists == 'true'
run: |
git config --global user.name 'github-actions'
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add ${{ steps.problem-files.outputs.unstyled-files }}
git commit -m '[skip actions] Restyle files'
git pull origin ${{ steps.branch-name.outputs.head_ref_branch }}
git push -v origin HEAD:${{ steps.branch-name.outputs.head_ref_branch }} || \
echo "⚠️ Could not push to ${BRANCH_NAME} on $(git remote -v show -n origin | grep Push)"
shell: bash
working-directory: ${{ github.event.repository.name }}/${{ inputs.package-subdirectory }}
continue-on-error: true
- name: Styler check summary 🅾
if: >
(inputs.auto-update != true
&& steps.check_files.outputs.files_exists == 'true')
|| (steps.autocommit-styled-files.outcome != 'success'
&& steps.autocommit-styled-files.outcome != 'skipped')
run: |
cat(paste(
"☠ One or more files had styling errors.",
"Please see the log above for remediations,",
"or simply run the following commands",
"for an immediate fix:\n"
))
cat("────────────────────────────────────────\n")
cat(paste0(
"styler::style_file(",
readLines("/tmp/style-problems.R", warn=FALSE),
")\n"
))
cat("────────────────────────────────────────\n")
quit(status = 1)
shell: Rscript {0}