xref: /libCEED/.github/workflows/rust-documentation.yml (revision 13964f0727a62e5421e6d3b433e838b96a9ce891)
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