Fix bug in solution_summary: duals can be things other than scalars (… #5073
This file contains 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: [master] | |
tags: '*' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GKSwstype: nul | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- name: Install dependencies | |
shell: julia --color=yes --project=docs/ {0} | |
run: | | |
using Pkg | |
Pkg.develop(PackageSpec(path=pwd())) | |
Pkg.instantiate() | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key | |
DOCUMENTER_LATEX_DEBUG: ${{ github.workspace }}/latex-debug-logs | |
run: julia --color=yes --project=docs/ docs/make.jl | |
- uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: PDF build logs | |
path: ${{ github.workspace }}/latex-debug-logs | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
version: 3.3.1 | |
files: all | |
fail_on_error: true | |
filter_mode: nofilter | |
vale_flags: "--config=.vale.ini" | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |