Set return type of Volume::save() to boolean #199
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 | |
on: [push, pull_request] | |
jobs: | |
build_ndb: | |
name: ndb | |
runs-on: ubuntu-latest | |
container: ghcr.io/pgaskin/nickeltc:1.0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build | |
run: make clean && make all cli koboroot | |
- name: Build Documentation | |
run: make doc | |
- name: Upload KoboRoot with 'qndb' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NickelDBus | |
path: KoboRoot.tgz | |
- name: Upload documentation | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Documentation | |
path: ./qdoc/html | |