Skip to content

Commit

Permalink
add quarto and R to test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas committed Sep 1, 2024
1 parent 8c0ff8c commit e719a86
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ jobs:
with:
python-version: "3.10"

- name: Install Quarto
run: |
wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.0/quarto-1.3.0-linux-amd64.deb
sudo dpkg -i quarto-1.3.0-linux-amd64.deb
- name: Install R
run: |
sudo apt-get update
sudo apt-get install -y r-base
- name: Install dependencies
run: pdm install

Expand Down

0 comments on commit e719a86

Please sign in to comment.