From 9e63c47f96dbd88f27a8f6e775af9767f8e41b18 Mon Sep 17 00:00:00 2001 From: Maciej Banas Date: Fri, 18 Oct 2024 09:54:04 +0000 Subject: [PATCH] Try fix spelling job. --- .github/workflows/spelling.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/spelling.yaml b/.github/workflows/spelling.yaml index 3071600..2e404a5 100644 --- a/.github/workflows/spelling.yaml +++ b/.github/workflows/spelling.yaml @@ -1,4 +1,4 @@ -name: 📝 Spelling Check +name: 📝 Spelling on: push: @@ -14,19 +14,16 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Set up R dependencies + uses: r-lib/actions/setup-r-dependencies@v2 + - name: Set up R uses: r-lib/actions/setup-r@v2 - - name: Install system dependencies - run: | - sudo apt-get update - sudo apt-get install -y libcurl4-openssl-dev - sudo apt-get install -y libharfbuzz-dev libfribidi-dev - - name: Install R packages run: | install.packages('devtools') - devtools::install_github('ropensci/spelling') + install.packages('spelling') shell: Rscript {0} - name: Run spelling check