1name: Rust Documentation 2 3on: 4 push: 5 6jobs: 7 test: 8 strategy: 9 matrix: 10 os: [ubuntu-22.04] 11 compiler: [clang] 12 13 runs-on: ${{ matrix.os }} 14 15 steps: 16 - name: Environment setup 17 uses: actions/checkout@v3 18 - name: Rust setup 19 uses: dtolnay/rust-toolchain@master 20 with: 21 toolchain: nightly 22 - name: Build documentation 23 run: | 24 cargo +nightly doc --package libceed-sys --package libceed --no-deps 25