doc.yml 442 B

123456789101112131415161718192021
  1. name: doc
  2. on: [push, pull_request]
  3. jobs:
  4. doc:
  5. runs-on: ubuntu-latest
  6. strategy:
  7. matrix:
  8. privilege: [machine, user]
  9. steps:
  10. - uses: actions/checkout@v2
  11. - uses: actions-rs/toolchain@v1
  12. with:
  13. profile: minimal
  14. toolchain: stable
  15. override: true
  16. - uses: actions-rs/cargo@v1
  17. with:
  18. command: doc
  19. args: --features=${{matrix.privilege}}-mode