Skip to content

fix: right_join/semi_join()/anti_join() look up keys wrongly and set incorrect colnames (#350) #502

fix: right_join/semi_join()/anti_join() look up keys wrongly and set incorrect colnames (#350)

fix: right_join/semi_join()/anti_join() look up keys wrongly and set incorrect colnames (#350) #502

Workflow file for this run

# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
branches: [main, master]
paths:
- .github/workflows/R-CMD-check.yml
- .Rbuildignore
- R/**
- tests/**
- vignettes/*
- DESCRIPTION
- NAMESPACE
pull_request:
branches: [main, master]
paths:
- .github/workflows/R-CMD-check.yml
- .Rbuildignore
- R/**
- tests/**
- vignettes/*
- DESCRIPTION
- NAMESPACE
name: R-CMD-check
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
R-CMD-check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
platform: "linux"
- os: macos-latest
platform: "mac"
- os: windows-latest
platform: "windows"
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
# TODO: this shouldn't be necessary but it prevents occasional failures on
# Windows, #291
TESTTHAT_CPUS: ${{ matrix.os == 'windows-latest' && '1' || '2' }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
extra-repositories: 'https://community.r-multiverse.org'
- name: Install R dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
- uses: r-lib/actions/check-r-package@v2