Skip to content

Commit

Permalink
ci: revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rCarto committed Apr 24, 2024
1 parent 1b7a382 commit 3af7413
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check-standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
Expand All @@ -29,7 +29,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

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

Expand All @@ -47,4 +47,3 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
16 changes: 2 additions & 14 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

- uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -27,17 +27,5 @@ jobs:
needs: coverage

- name: Test coverage
run: |
covr::codecov(
quiet = FALSE,
clean = FALSE,
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
)
run: covr::codecov(token = "${{ secrets.CODECOV_TOKEN }}", quiet = FALSE)
shell: Rscript {0}

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: coverage-test-failures
path: ${{ runner.temp }}/package

0 comments on commit 3af7413

Please sign in to comment.