Skip to content

Commit 191504b

Browse files
add docs
1 parent 4e44f51 commit 191504b

File tree

11 files changed

+580
-1
lines changed

11 files changed

+580
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
permissions:
12+
contents: write
13+
pull-requests: read
14+
statuses: write
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: julia-actions/setup-julia@v2
19+
with:
20+
version: '1'
21+
- uses: julia-actions/cache@v2
22+
- name: Install dependencies
23+
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
24+
- name: Build and deploy
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
run: julia --project=docs/ docs/make.jl

class01/background_materials/basics_math.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ md"
3434
3535
| | | |
3636
|-----------:|:--|:------------------|
37-
| Professor | : | Rosemberg, Andrew |
37+
| Lecturer | : | Rosemberg, Andrew |
3838
3939
# Background Math (_Welcome to Pluto!_)
4040

docs/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
site/

0 commit comments

Comments
 (0)