feat(standards): add Rust to template configuration (#2) #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Docs workflow — generates and validates documentation via the dev-toolchain container. | |
| # This workflow runs as a separate status check on PRs. | |
| # To block merges on failure, enable branch protection: | |
| # Settings > Branches > Require status checks > Select "docs" | |
| name: Docs | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/devrail-dev/dev-toolchain:v1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run docs | |
| run: make _docs |