Skip to content

Commit

Permalink
try to get deps working
Browse files Browse the repository at this point in the history
  • Loading branch information
Zach Deane-Mayer committed Jun 25, 2024
1 parent 3706a47 commit c82acea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/r-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup R
uses: r-lib/actions/setup-r@v2
uses: r-lib/actions/setup-r@v2

- name: Install dependencies
run: |
sudo apt-get install -y make
make install
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::roxygen2

- name: Run unit tests
run: make test
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ all: install document test test-coverage check check-cran

# Install dependencies
install:
Rscript -e "if (!requireNamespace('devtools', quietly = TRUE)) install.packages('devtools')"
Rscript -e "devtools::install_deps()"
Rscript -e "devtools::install_dev_deps()"

Expand Down

0 comments on commit c82acea

Please sign in to comment.