This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Clarify that S3-specific arguments are separate from pin_write()
ar…
#1
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
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
name: cross-compat | |
jobs: | |
cross-compat: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
SHARED_BOARD: "tmp" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: local::. | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade git+https://github.com/rstudio/pins-python | |
- name: Write pins | |
run: | | |
python .github/cross-compat/write-pins.py $SHARED_BOARD | |
Rscript .github/cross-compat/write-pins.R $SHARED_BOARD | |
- name: Read pins | |
run: | | |
Rscript .github/cross-compat/read-pins.R $SHARED_BOARD | |
python .github/cross-compat/read-pins.py $SHARED_BOARD | |