feat: The default DuckDB connection is now based on a file, the location can be controlled with the DUCKPLYR_TEMP_DIR
environment variable
#192
Workflow file for this run
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
name: Continuous Benchmarks (Receive) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths: | |
# Directories with source code and benchmarking code | |
- "R/**" | |
- "touchstone/**" | |
# Benchmarking config file | |
- ".github/workflows/touchstone-*.yaml" | |
# Package metadata | |
- DESCRIPTION | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
env: | |
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | |
RSPM: "https://packagemanager.rstudio.com/all/__linux__/noble/latest" | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: lorenzwalthert/touchstone/actions/receive@main | |
with: | |
cache-version: 1 |