Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7570647
Add example: rogers75_bezunitful.jl
Jun 3, 2025
567eb58
Merge branch 'testing' of github.com:thearia0/DiffEqDocs.jl into testing
Jul 29, 2025
e0ae6e0
Merge branch 'SciML:master' into testing
thearia0 Aug 3, 2025
c109554
plik md wersja 1
Aug 4, 2025
102d292
Merge branch 'testing' of github.com:thearia0/DiffEqDocs.jl into testing
Aug 4, 2025
4a466cb
test działania na github actions 4.08
Aug 4, 2025
9978533
test działania na github actions 4.08
Aug 4, 2025
d0ab19c
ograniczenie czasu instantiate 4.08
Aug 4, 2025
be7bc5a
ograniczenie czasu instantiate 4.08
Aug 4, 2025
21315dd
ograniczenie czasu instantiate 4.08
Aug 4, 2025
5e73be5
ograniczenie czasu instantiate z compile 4.08
Aug 4, 2025
4ba629a
ograniczenie czasu instantiate z compile bez literowki 4.08
Aug 4, 2025
622ff68
ograniczenie czasu instantiate z optimize 4.08
Aug 4, 2025
6e6bbeb
plik md z kodem
Aug 5, 2025
810501c
dodane using plots
Aug 7, 2025
c04ea02
version of md file that compiles
Aug 7, 2025
dea99a4
enable logging in via ssh on failure
slayoo Aug 7, 2025
ca335c8
fix symbolic link path
slayoo Aug 7, 2025
741940f
fig3, fig4, poprawki do 1 i 2
thearia0 Aug 19, 2025
cef3ced
figures 3 and 4 wont generate, trying to fix it
thearia0 Aug 20, 2025
2263b4d
projekt z użyciem jednostek, błąd w funkcji G(p,T) w linijce 81 -> zł…
thearia0 Nov 3, 2025
930a3a2
wszystkie wykresy dzialaja oprocz 7, przemyslec param i u0
thearia0 Nov 3, 2025
dfe9b47
1st version of PR
thearia0 Dec 1, 2025
05aa275
till model setup ok
thearia0 Dec 1, 2025
ea4a798
fixing typos
thearia0 Dec 1, 2025
ea08629
fixing typos
thearia0 Dec 1, 2025
7e0c134
remove unnecessary files
thearia0 Dec 1, 2025
1e48145
cloud_microphysics example version 1.0
thearia0 Dec 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Documentation

on:
pull_request:
branches: [master]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1]
julia-arch: [x86]
os: [ubuntu-latest]
steps:
- uses: actions/[email protected]
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: generate docs
run: |
set -x
mv docs/src docs/src.offf
mkdir docs/src
mv docs/src.offf/examples/new.md docs/src
echo 'pages = Any["new.md"]' > docs/pages.jl
ln -s ../../docs/src.offf/assets docs/src/assets
JULIA_PKG_PRECOMPILE_AUTO=0 julia --project=docs --optimize=0 -e '
println("--- :julia: Instantiating project")
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
println("--- :julia: Adding OrdinaryDiffEq from master")
Pkg.develop("OrdinaryDiffEq")
println("--- :julia: Building documentation")
include("docs/make.jl")
'
- name: Setup tmate session
- if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
3 changes: 2 additions & 1 deletion docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ pages = Any["index.md",
"examples/conditional_dosing.md",
"examples/kepler_problem.md",
"examples/outer_solar_system.md",
"examples/min_and_max.md"],
"examples/min_and_max.md",
"examples/cloud_microphysics_with_Unitful.md"],
"Advanced" => Any["examples/spiking_neural_systems.md",
"examples/beeler_reuter.md",
"examples/diffusion_implicit_heat_equation.md"]],
Expand Down
Loading