Skip to content

Commit 4338a2e

Browse files
committed
Fix CI?.
1 parent 8b787ae commit 4338a2e

File tree

5 files changed

+15
-18
lines changed

5 files changed

+15
-18
lines changed

.github/workflows/main.yaml

+2-8
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,8 @@ jobs:
1515
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1616
steps:
1717
- uses: actions/checkout@v3
18-
- name: Render
19-
run: |
20-
julia -e 'using Pkg; Pkg.add("IJulia")'
21-
julia -e 'using IJulia'
22-
julia -e 'using Pkg; Pkg.add("Revise")'
23-
# quarto check jupyter
24-
quarto render
25-
ls docs
18+
- uses: julia-actions/setup-julia@v2
19+
- uses: quarto-dev/quarto-actions/render@v2
2620
- name: Deploy
2721
uses: peaceiris/actions-gh-pages@v3
2822
with:

Project.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
GeoDataFrames = "62cb38b5-d8d2-4862-a48e-6a340996859f"

README.qmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
format: gfm
33
---
44

5-
# geocompjl
5+
# Geocomputation with Julia
66

77
[![Render](https://github.com/geocompx/geocompjl/actions/workflows/main.yaml/badge.svg)](https://github.com/geocompx/geocompjl/actions/workflows/main.yaml)
88

_quarto.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ book:
77
page-footer: "Geocomputation with Julia was written by ."
88
# number-sections: true
99
author: ""
10-
description: |
10+
description: |
1111
An introductory resource for working with geographic data in Julia
1212
#cover-image: https://geocompx.org/static/img/book_cover_py_tmp_small.png
1313
site-url: https://jl.geocompx.org
@@ -22,7 +22,7 @@ book:
2222
- references.qmd
2323

2424
format:
25-
html:
25+
html:
2626
theme: flatly
2727
code-link: true
2828
template-partials: [helpers/toc.html, helpers/title-block.html]
@@ -32,23 +32,23 @@ format:
3232
# pdf:
3333
# documentclass: krantz
3434
# monofont: 'Source Code Pro'
35-
# monofontoptions:
35+
# monofontoptions:
3636
# - Scale=0.7
3737
# pdf-engine: xelatex
3838
# keep-tex: true
3939
# number-sections: true
4040
# top-level-division: chapter
4141
# include-before-body: helpers/before_body.tex
42-
# include-in-header:
42+
# include-in-header:
4343
# text: |
4444
# \AtBeginEnvironment{longtable}{\footnotesize}
4545
# \usepackage{makeidx}
4646
# \usepackage{gensymb}
4747
# \usepackage{cjhebrew}
4848
# \makeindex
49-
# include-after-body:
49+
# include-after-body:
5050
# text: |
5151
# \printindex
5252

53-
jupyter: julia-1.5
53+
jupyter: julia
5454
bibliography: geocompr.bib

index.qmd

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description-meta: |
44
It's a short and practical open source book in which you'll
55
develop and use geocomputation to solve practical
66
problems and lay the foundations for advanced geospatial applications.
7+
engine: julia
78
---
89

910
::: {.content-visible when-format="html"}
@@ -30,6 +31,6 @@ For details on reproducing the book, see the README in the project's GitHub repo
3031
:::
3132

3233
```{julia}
33-
#| echo: false
34-
"Hello geocompx World"
35-
```
34+
# |echo: false
35+
print("Hello geocompx World")
36+
```

0 commit comments

Comments
 (0)