Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/warnings.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Run CI for R using https://eddelbuettel.github.io/r-ci/

name: warnings

on:
push:
pull_request:

env:
_R_CHECK_FORCE_SUGGESTS_: "false"
RCPP_CXXFLAGS: "-Werror"

jobs:
ci:
runs-on: ubuntu-latest
container: rocker/drd

steps:
- name: Checkout
uses: actions/checkout@v7

- name: Setup
uses: eddelbuettel/github-actions/r-ci@master

- name: Dependencies
run: ./run.sh install_deps

- name: Set flags
run: mkdir -p ~/.R && echo "CXXFLAGS += $RCPP_CXXFLAGS" >> ~/.R/Makevars

- name: Test
run: ./run.sh run_tests

- name: Logs
run: ./run.sh dump_logs
if: failure()
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2026-09-01 Iñaki Ucar <iucar@fedoraproject.org>

* .github/workflows/warnings.yaml: Add new CI file with -Werror enabled

2026-08-08 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Version, Date): Roll micro version and date
Expand Down
Loading