Minor changes in transient_heat_equation.jl and change in notation of test functions #867
Workflow file for this run
This file contains hidden or 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
| name: Documentation | |
| on: | |
| pull_request: | |
| push: | |
| branches: ['master'] | |
| tags: ['*'] | |
| jobs: | |
| docs: | |
| name: Julia 1.12 - ubuntu-latest | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1.12' | |
| - uses: julia-actions/cache@v3 | |
| - name: Install dependencies | |
| run: julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.precompile()' | |
| - name: Build and deploy | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
| GKSwstype: '100' | |
| run: julia --project=docs --color=yes docs/make.jl |