Skip to content

Commit

Permalink
no r devel
Browse files Browse the repository at this point in the history
  • Loading branch information
stolarczyk committed Jul 6, 2020
1 parent fae9694 commit a0f4311
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-R.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
r: ['release', 'devel']
r: [release]
os: [ubuntu-latest, macos-latest, windows-latest]

env:
Expand All @@ -36,6 +36,14 @@ jobs:
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
shell: Rscript {0}

- name: Cache R packages
if: runner.os != 'Windows'
uses: actions/cache@v1
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-r-${{ matrix.config.r }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-1-

- name: Install system dependencies
if: runner.os == 'Linux'
env:
Expand Down

0 comments on commit a0f4311

Please sign in to comment.