Create Csr constructor that takes Coo as the argument #179
Workflow file for this run
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: [pull_request] | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Doxygen Build | |
uses: ryandanehy/sphinx-doxygen@v1 | |
with: | |
sphinx-path: './sphinx/_build' | |
working-directory: 'docs' | |
doxyfile-path: './doxygen/Doxyfile.in' | |
- uses: actions/setup-python@v3 | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'pull_request' }} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/sphinx/_build/ | |
force_orphan: true |