Skip to content

Commit

Permalink
Try changing temp directory
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv committed Apr 30, 2024
1 parent 06d4952 commit d951bd0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ jobs:

- uses: r-lib/actions/setup-pandoc@v2

- name: Fix temp dir to use runner one (windows)
if: runner.os == 'Windows'
run: |
echo "TMPDIR=${{ runner.temp }}" >> $GITHUB_ENV
echo "TMP=${{ runner.temp }}" >> $GITHUB_ENV
echo "TEMP=${{ runner.temp }}" >> $GITHUB_ENV
shell: bash

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
Expand All @@ -55,9 +63,6 @@ jobs:
extra-packages: any::rcmdcheck
needs: check

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true

0 comments on commit d951bd0

Please sign in to comment.