Skip to content

update examples (#13) #77

update examples (#13)

update examples (#13) #77

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
[push, pull_request]
name: lint
jobs:
lint:
runs-on: windows-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install ospsuite ecosystem and cran packages
run: |
Rscript .github/workflows/install_dependencies.R
- name: Install lintr
run: Rscript -e "install.packages('lintr',repos='http://cran.rstudio.com/')"
- name: Lint
run: |
Rscript .github/workflows/run_lintr.R