-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: R Checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install system dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libharfbuzz-dev libfribidi-dev libfreetype6-dev pkg-config libcurl4-openssl-dev | ||
- name: Setup R environment | ||
uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: 'latest' | ||
|
||
- name: Install devtools and package dependencies | ||
run: | | ||
Rscript -e 'install.packages("devtools", dependencies = NA)' | ||
Rscript -e 'install.packages("lintr", dependencies = NA)' | ||
Rscript -e 'devtools::install_deps(dep = TRUE)' | ||
- name: Check package and tests | ||
run: | | ||
Rscript -e 'devtools::check()' | ||
- name: Check linting | ||
run: | | ||
Rscript -e 'lintr::expect_lint_free()' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
print("Bonjour INSA !") | ||
print("Bonjour INSA !") |