forked from Sparrow0hawk/quarto-revealjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic code sections added (just loads libraries)
- Loading branch information
Showing
3 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,22 +25,22 @@ jobs: | |
quarto install --no-prompt extension grantmcdermott/quarto-revealjs-clean | ||
quarto install --no-prompt extension ArthurData/quarto-confetti | ||
# - name: Install Python and Dependencies | ||
# uses: actions/[email protected] | ||
# with: | ||
# python-version: '3.10' | ||
# cache: 'pip' | ||
# - run: pip install -r requirements.txt | ||
|
||
# - name: Install R | ||
# uses: r-lib/actions/setup-r@v2 | ||
# with: | ||
# r-version: '4.2.0' | ||
|
||
# - name: Install R Dependencies | ||
# uses: r-lib/actions/setup-renv@v2 | ||
# with: | ||
# cache-version: 1 | ||
- name: Install Python and Dependencies | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
- run: pip install -r requirements.txt | ||
|
||
- name: Install R | ||
uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: '4.2.0' | ||
|
||
- name: Install R Dependencies | ||
uses: r-lib/actions/setup-renv@v2 | ||
with: | ||
cache-version: 1 | ||
|
||
- name: Publish to GitHub Pages (and render) | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
numpy | ||
pandas |