Skip to content

Bump braces from 3.0.2 to 3.0.3 in /client #448

Bump braces from 3.0.2 to 3.0.3 in /client

Bump braces from 3.0.2 to 3.0.3 in /client #448

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
linux:
if: contains(github.event.head_commit.message, '[ci skip]') == false
strategy:
matrix:
r: [latest]
# r: [3.5, latest, devel]
runs-on: ubuntu-latest
container: rocker/tidyverse:${{ matrix.r }}
env:
NOT_CRAN: true
steps:
- uses: actions/checkout@v4
- name: Install apt-get dependencies
run: |
apt-get update
apt-get install git ssh curl bzip2 libffi-dev -y
- name: Install lintr
run: |
Rscript -e "install.packages('lintr', repos = 'https://cloud.r-project.org')"
shell:
bash
- name: Running lintr
run: |
Rscript -e "library(lintr); lint_package()"
shell:
bash