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