Skip to content

Now returning a Result instead of an Option. #33

Now returning a Result instead of an Option.

Now returning a Result instead of an Option. #33

Workflow file for this run

name: Rustdoc
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt install libgtk-4-dev libgtk-3-dev libatk1.0-dev --yes
- uses: actions/checkout@v4
- name: Doc
run: cargo doc --verbose
- name: Doctest
run: cargo test --doc --verbose