fix: Gate empty result in GATConv #452
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: Docs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1.12.2' # set to '1' after 1.12.4 release, see https://github.com/JuliaLang/Pkg.jl/pull/4568 | |
| - uses: julia-actions/cache@v2 | |
| # Build individual docs | |
| - run: julia --project=GNNGraphs/docs/ -e 'using Pkg; Pkg.instantiate()' | |
| - run: julia --color=yes --project=GNNGraphs/docs/ GNNGraphs/docs/make.jl | |
| - run: julia --project=GNNlib/docs/ -e 'using Pkg; Pkg.instantiate()' | |
| - run: julia --color=yes --project=GNNlib/docs/ GNNlib/docs/make.jl | |
| - run: julia --project=GNNLux/docs/ -e 'using Pkg; Pkg.instantiate()' | |
| - run: julia --color=yes --project=GNNLux/docs/ GNNLux/docs/make.jl | |
| - run: julia --project=GraphNeuralNetworks/docs/ -e 'using Pkg; Pkg.instantiate()' | |
| - run: julia --color=yes --project=GraphNeuralNetworks/docs/ GraphNeuralNetworks/docs/make.jl | |
| # Compile multi docs | |
| - name: MultiDocs | |
| run: | | |
| git config user.name github-actions | |
| git config user.email [email protected] | |
| julia --project=docs/ -e 'using Pkg; Pkg.instantiate()' | |
| julia --color=yes --project=docs/ docs/make-multi.jl |