Skip to content

Commit

Permalink
fix install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield committed Oct 17, 2023
1 parent ba5d70a commit 8349b30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ env:

jobs:
check:
runs-on: ubuntu-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install system dependencies
run: sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev

- name: Install R version 4.x
uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -25,6 +25,6 @@ jobs:
with:
extra-packages: any::rcmdcheck
needs: check

- name: Run R CMD CHECK
uses: r-lib/actions/check-r-package@v2

0 comments on commit 8349b30

Please sign in to comment.