Skip to content

feat: add partial support for inequality joins #797

feat: add partial support for inequality joins

feat: add partial support for inequality joins #797

Workflow file for this run

# Run CI for R using https://eddelbuettel.github.io/r-ci/
name: R-CMD-check
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
env:
USE_BSPM: "true"
_R_CHECK_FORCE_SUGGESTS_: "false"
# Otherwise default is to use "--no-build-vignettes --no-manual --as-cran"
R_BUILD_ARGS: "--no-manual"
R_CHECK_ARGS: "--no-manual --no-vignettes --as-cran"
WARNINGS_ARE_ERRORS: "true"
R_GH: true
GITHUB_PAT: ${{ secrets.COVR_GH_PAT }}
jobs:
ci:
strategy:
matrix:
include:
- {os: macOS-12, r: 'release'}
- {os: ubuntu-latest, r: 'release'}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
- name: Setup
uses: eddelbuettel/github-actions/r-ci-setup@master
- name: Bootstrap
run: ./run.sh bootstrap
- name: Install r-polars
run: |
Sys.setenv(NOT_CRAN = "true") # Enable installation with pre-built Rust library binary, or enable Rust caching
install.packages("polars", repos = "https://community.r-multiverse.org")
shell: Rscript {0}
- name: Dependencies
run: ./run.sh install_all
- name: Test
run: ./run.sh run_tests