Speed up C++ ABI audit with ELF cxx11 precheck #1490
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: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| env: | |
| JULIA_PKG_SERVER: "" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| statuses: write | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@latest | |
| with: | |
| version: "1.12" | |
| - uses: julia-actions/cache@v3 | |
| with: | |
| cache-registries: "true" | |
| - name: Install dependencies | |
| shell: julia --color=yes --project=docs/ {0} | |
| run: | | |
| using Pkg | |
| Pkg.Registry.update() | |
| Pkg.develop(PackageSpec(path=pwd())) | |
| Pkg.instantiate() | |
| - uses: julia-actions/julia-docdeploy@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |