AMR/.github/workflows/lintr.yaml

57 lines
2.5 KiB
YAML
Raw Normal View History

2020-07-08 14:48:06 +02:00
# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Data Analysis for R #
2020-07-08 14:48:06 +02:00
# #
# SOURCE #
# https://github.com/msberends/AMR #
# #
# LICENCE #
2021-12-23 18:56:28 +01:00
# (c) 2018-2022 Berends MS, Luz CF et al. #
2020-10-08 11:16:03 +02:00
# Developed at the University of Groningen, the Netherlands, in #
# collaboration with non-profit organisations Certe Medical #
# Diagnostics & Advice, and University Medical Center Groningen. #
2020-07-08 14:48:06 +02:00
# #
# This R package is free software; you can freely use and distribute #
# it for both personal and commercial purposes under the terms of the #
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
2020-10-08 11:16:03 +02:00
# the Free Software Foundation.
2020-07-08 14:48:06 +02:00
# We created this package for both routine data analysis and academic #
# research and it was publicly released in the hope that it will be #
# useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. #
2020-10-08 11:16:03 +02:00
# #
# Visit our website for the full manual and a complete tutorial about #
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
2020-07-08 14:48:06 +02:00
# ==================================================================== #
on:
push:
2022-08-26 23:25:37 +02:00
branches: '**'
2020-07-08 14:48:06 +02:00
pull_request:
2022-08-26 23:25:37 +02:00
branches: '**'
2020-07-08 14:48:06 +02:00
2020-07-08 20:43:25 +02:00
name: lintr
2020-07-08 14:48:06 +02:00
jobs:
2020-07-08 20:43:25 +02:00
lintr:
2022-08-28 19:17:12 +02:00
runs-on: ubuntu-latest
2020-07-08 14:48:06 +02:00
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
2022-08-26 23:25:37 +02:00
- uses: actions/checkout@v3
2020-07-08 14:48:06 +02:00
2022-08-28 19:17:12 +02:00
- uses: r-lib/actions/setup-pandoc@v2
2020-07-08 14:48:06 +02:00
2022-08-28 19:17:12 +02:00
- uses: r-lib/actions/setup-r@v2
2020-07-08 14:48:06 +02:00
with:
2022-08-28 19:17:12 +02:00
r-version: release
# use RStudio Package Manager to quickly install packages
use-public-rspm: true
2020-07-08 14:48:06 +02:00
2022-08-28 19:17:12 +02:00
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::lintr
2020-07-08 14:48:06 +02:00
- name: Lint
run: lintr::lint_package(linters = lintr::with_defaults(line_length_linter = NULL, trailing_whitespace_linter = NULL, object_name_linter = NULL, cyclocomp_linter = NULL, object_length_linter = lintr::object_length_linter(length = 50L)), exclusions = list("R/aa_helper_pm_functions.R"))
2020-07-08 14:48:06 +02:00
shell: Rscript {0}