Skip to content

chore(deps): bump wayland-protocols from 0.32.12 to 0.32.13 #175

chore(deps): bump wayland-protocols from 0.32.12 to 0.32.13

chore(deps): bump wayland-protocols from 0.32.12 to 0.32.13 #175

Workflow file for this run

name: Documentation
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Check docs
run: |
sudo apt update
sudo apt install --no-install-recommends scdoc
for file in $(find . -type f -iwholename "./docs/*.scd"); do scdoc < $file > /dev/null; done
rust-doc:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- name: Build cache
uses: Swatinem/rust-cache@v2
- name: Install system dependencies
run: |
pacman -Syu --noconfirm git egl-wayland egl-gbm wayland base-devel mesa pango cairo
- name: Doc
run: cargo doc --workspace --no-deps --all-features
env:
RUSTDOCFLAGS: -D warnings