Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Update to use BLIS 2.0 #50

Update to use BLIS 2.0

Update to use BLIS 2.0 #50

Workflow file for this run

name: Documenter
on:
push:
branches:
- master
tags: '*'
pull_request:
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.7'
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}