Skip to content

fix: fix HTTP calls with raw text input for the R client #2

fix: fix HTTP calls with raw text input for the R client

fix: fix HTTP calls with raw text input for the R client #2

Workflow file for this run

name: build-r
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up R
uses: r-lib/actions/setup-r@v2
with:
r-version: 4.x
- name: Set up R dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache: true
working-directory: ./src/gen/r
- name: Build
working-directory: ./src/gen/r
run: |
R CMD build .
- name: Test
working-directory: ./src/gen/r
run: |
R CMD check *tar.gz --as-cran --no-manual --no-vignettes