Merge pull request #3250 from ERGO-Code/postsolveInfrChanges2 #3579
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: | |
| push: | |
| branches: [latest] | |
| tags: '*' | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@latest | |
| with: | |
| version: '1.12' | |
| - name: Install dependencies | |
| shell: julia --color=yes --project=docs/ {0} | |
| run: | | |
| using Pkg | |
| Pkg.instantiate() | |
| - name: Build and deploy | |
| run: julia --project=docs/ --color=yes docs/make.jl | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |