db: return a value of grn_rc type instead of void #9
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: Build document | |
on: | |
push: | |
branches: | |
- main | |
- 'maintenance/**' | |
tags: | |
- '*' | |
paths: | |
- 'Rakefile' | |
- 'doc/Doxyfile' | |
- 'include/**/*.h' | |
- 'include/**/*.hpp' | |
- '.github/workflows/document.yml' | |
pull_request: | |
paths: | |
- 'Rakefile' | |
- 'doc/Doxyfile' | |
- 'include/**/*.h' | |
- 'include/**/*.hpp' | |
- '.github/workflows/document.yml' | |
concurrency: | |
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
# todo: Build and publish the full document, including Sphinx. | |
doxygen: | |
name: Doxygen | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
- name: Install Doxygen | |
run: sudo apt install -y -V doxygen graphviz | |
- name: Run Doxygen | |
run: rake document:api |