Skip to content

Commit

Permalink
Add mdbtools to test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
k5cents committed Nov 14, 2022
1 parent 667cd92 commit 55e3da3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check-standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
Expand All @@ -33,6 +31,9 @@ jobs:

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

- name: Install mdbtools
run: sudo apt-get install mdbtools

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:

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

- name: Install mdbtools
run: sudo apt-get install mdbtools

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
Expand All @@ -33,6 +36,7 @@ jobs:
extra-packages: any::pkgdown, local::.
needs: website


- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
extra-packages: any::covr
needs: coverage

- name: Install mdbtools
run: sudo apt-get install mdbtools

- name: Test coverage
run: |
covr::codecov(
Expand Down

0 comments on commit 55e3da3

Please sign in to comment.