Skip to content

Commit

Permalink
Fix: Install required Python and R packages for Quarto build
Browse files Browse the repository at this point in the history
  • Loading branch information
danilofreire committed Nov 4, 2024
1 parent d27ac27 commit 3577c38
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
python-version: '3.10'

# Step 3: Install Python dependencies
- name: Install dependencies
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install jupyter nbformat
pip install jupyter nbformat psycopg2 sqlalchemy pandas numpy matplotlib
# Step 4: Set up R
- name: Set up R
Expand All @@ -33,7 +33,6 @@ jobs:
r-version: '4.4.1'

# Step 5: Install R packages
- name: Install R packages
run: |
Rscript -e 'install.packages(c("rmarkdown", "knitr"), repos="https://cloud.r-project.org/")'
Expand Down

0 comments on commit 3577c38

Please sign in to comment.