Skip to content

Fix Dense with a zero-sized batch dimension (#2407) #48

Fix Dense with a zero-sized batch dimension (#2407)

Fix Dense with a zero-sized batch dimension (#2407) #48

Workflow file for this run

name: Documentation
on:
pull_request:
branches:
- master
push:
branches:
- master
tags: '*'
# contents/statuses: write are needed by deploydocs for gh-pages and PR previews;
# actions: write lets julia-actions/cache delete old caches
permissions:
actions: write
contents: write
pull-requests: read
statuses: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: '1'
- uses: julia-actions/cache@v3
- name: Install dependencies
run: julia --project=docs -e 'using Pkg; Pkg.instantiate()'
- name: Build and deploy
run: julia --color=yes --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}