Bump sea-orm #8
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
| name: "[docs]" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| env: | |
| RUST_TOOLCHAIN: stable | |
| TOOLCHAIN_PROFILE: minimal | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{ env.RUST_TOOLCHAIN }} | |
| - run: cargo install snipdoc --features exec | |
| - run: snipdoc check | |
| continue-on-error: true | |
| env: | |
| SNIPDOC_SKIP_EXEC_COMMANDS: true |