view - add Ceed*[Get/Set]ViewTabs for all objects #7118
This file contains hidden or 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: Rust Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04] | |
| compiler: [clang] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Environment setup | |
| uses: actions/checkout@v4 | |
| - name: Rust setup | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| - name: Build documentation | |
| run: | | |
| cargo +nightly doc --package libceed-sys --package libceed --no-deps |