Skip to content

Commit

Permalink
chore: copy over admiralci workflows with minimal changes
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kolomanski committed Jan 9, 2025
1 parent 2f07da8 commit bdcc4b2
Show file tree
Hide file tree
Showing 5 changed files with 597 additions and 353 deletions.
145 changes: 145 additions & 0 deletions .github/workflows/lintr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
on:
workflow_dispatch:
inputs:
r-version:
description: "The version of R to use"
default: "release"
required: false
type: choice
options:
- devel
- latest
lint-all-files:
description: "Lint all files every time"
default: "false"
required: false
type: string
latest-lintr:
description: "Latest lintr CRAN release"
default: "false"
required: false
type: string
install-package:
description: "Install package locally."
default: "false"
required: false
type: string
workflow_call:
inputs:
r-version:
description: "The version of R to use"
default: "release"
required: false
type: string
lint-all-files:
description: "Lint all files every time"
default: "false"
required: false
type: string
latest-lintr:
description: "Latest lintr CRAN release"
default: "false"
required: false
type: string
install-package:
description: "Install package locally."
default: "false"
required: false
type: string

name: Lint

concurrency:
group: lint-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
container:
image: "ghcr.io/pharmaverse/admiralci-${{ inputs.r-version }}:latest"
if: >
!contains(github.event.commits[0].message, '[skip lint]')
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
##################### BEGIN boilerplate steps #####################
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v8

- name: Checkout repo (PR) 🛎
uses: actions/[email protected]
if: github.event_name == 'pull_request'
with:
ref: ${{ steps.branch-name.outputs.head_ref_branch }}
repository: ${{ github.event.pull_request.head.repo.full_name }}

- name: Checkout repository
uses: actions/[email protected]
if: github.event_name != 'pull_request'
with:
ref: ${{ steps.branch-name.outputs.head_ref_branch }}

- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.staged.dependencies
key: staged-deps

- name: Run Staged dependencies
uses: insightsengineering/staged-dependencies-action@v1
with:
run-system-dependencies: true
renv-restore: false
enable-check: false
direction: upstream
git-ref: ${{ steps.branch-name.outputs.current_branch }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

- name: Install latest release of lintr
run: |
install.packages("lintr", repos = "https://packagemanager.posit.co/cran/latest/")
shell: Rscript {0}
if: ${{ inputs.latest-lintr == 'true' }}

- name: Install package
run: renv::install(".", dependencies = "no-deps")
shell: Rscript {0}
if: ${{ inputs.install-package == 'true' }}
##################### END boilerplate steps #####################

- name: Changed files
id: files
uses: Ana06/[email protected]
with:
format: "json"
filter: "*"

- name: Lint
run: |
exclusions_list <- NULL
if (!identical("${{ inputs.lint-all-files }}", "true")) {
changed_files <- jsonlite::fromJSON('${{ steps.files.outputs.added_modified }}')
all_files <- list.files(recursive = TRUE)
exclusions_list <- if (any(changed_files %in% c(".lintr", "renv.lock"))) {
as.list(setdiff(all_files, changed_files))
} else {
NULL
}
}
lints <- lintr::lint_package(exclusions = exclusions_list)
saveRDS(lints, file = "lints.rds")
shell: Rscript {0}

- name: Error if lints are detected
run: |
lints <- readRDS("lints.rds")
if (length(lints) > 0L) {
print(lints)
stop("Lints detected. Please review and adjust code according to the comments provided.", call. = FALSE)
}
shell: Rscript {0}
Loading

0 comments on commit bdcc4b2

Please sign in to comment.