Skip to content

debug r-devel

debug r-devel #28

Workflow file for this run

on:
push:
branches: [main]
workflow_dispatch:
name: Debug
jobs:
debug:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
matrix:
config:
- {os: windows-latest, r: 'devel', http-user-agent: 'release'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: true
steps:
- uses: actions/checkout@HEAD
- uses: r-lib/actions/setup-r@HEAD
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- name: Setup tmate session
uses: mxschmitt/action-tmate@HEAD