Skip to content

Commit 760ed1a

Browse files
authored
ci: Correct installation of xml2 (#54)
1 parent 2bbad71 commit 760ed1a

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
cache-version: rcc-smoke-2
111111
needs: build, check, website
112112
# Beware of using dev pkgdown here, has brought in dev dependencies in the past
113-
extra-packages: any::rcmdcheck r-lib/roxygen2 any::decor r-lib/styler r-lib/pkgdown xml2 deps::.
113+
extra-packages: any::rcmdcheck r-lib/roxygen2 any::decor r-lib/styler r-lib/pkgdown deps::.
114114

115115
- uses: ./.github/workflows/custom/after-install
116116
if: hashFiles('.github/workflows/custom/after-install/action.yml') != ''

.github/workflows/check/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ runs:
88
using: "composite"
99
steps:
1010
- uses: r-lib/actions/check-r-package@v2
11-
if: ${{ ! inputs.covr }}
1211
with:
1312
# Fails on R 3.6 on Windows, remove when this job is removed?
1413
args: 'c("--no-manual", "--as-cran", "--no-multiarch")'

.github/workflows/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ runs:
104104
pak-version: stable
105105
needs: ${{ inputs.needs }}
106106
packages: ${{ inputs.packages }}
107-
extra-packages: ${{ inputs.extra-packages }} ${{ ( matrix.covr && 'any::covr' ) || '' }} ${{ steps.get-extra.outputs.packages }}
107+
extra-packages: ${{ inputs.extra-packages }} ${{ ( matrix.covr && 'covr xml2' ) || '' }} ${{ steps.get-extra.outputs.packages }}
108108
cache-version: ${{ inputs.cache-version }}
109109

110110
- name: Add pkg.lock to .gitignore

.github/workflows/pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
22
# Also included in R-CMD-check.yaml, this workflow only listens to pushes to branches
3-
# that start with "docs*"
3+
# that start with "docs*" or "cran-*" and does not need to act on pushes to the main branch.
44
on:
55
push:
66
branches:

0 commit comments

Comments
 (0)