Add revision 9 D-Bus information #518
Workflow file for this run
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: stratis-docs CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| docs-checks: | |
| runs-on: ubuntu-latest | |
| container: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies | |
| run: dnf install -y make lyx 'dnf-command(copr)' | |
| - name: Enable copr repo | |
| run: dnf copr enable pgdev/zola --assumeyes | |
| - name: Install zola | |
| run: dnf install zola --assumeyes | |
| - name: Run test | |
| run: make -f Makefile check | |
| spelling-and-formatting-checks: | |
| runs-on: ubuntu-latest | |
| container: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT | |
| steps: | |
| - name: Install dependencies for Fedora | |
| run: > | |
| dnf install -y | |
| clang | |
| git | |
| make | |
| xmllint | |
| which | |
| yamllint | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| components: cargo | |
| toolchain: 1.95.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN | |
| - uses: baptiste0928/cargo-install@v3 | |
| with: | |
| crate: typos-cli | |
| - name: Run spell check | |
| run: make -f Makefile check-typos | |
| - name: Run format check | |
| run: | | |
| make -f Makefile fmt | |
| git diff --exit-code -- ./docs/dbus/*.xml | |
| - name: Run lint check | |
| run: make -f Makefile yamllint |