Merge dev into main #843
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: Build & Deploy docs | |
| on: [push, pull_request] | |
| env: | |
| rust-toolchain: nightly-2025-05-07 | |
| jobs: | |
| doc: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| permissions: | |
| contents: write | |
| env: | |
| default-branch: ${{ format('refs/heads/{0}', github.event.repository.default_branch) }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: ${{ env.rust-toolchain }} | |
| - name: Install gcc multilib | |
| run: sudo apt update && sudo apt install -y gcc-multilib | |
| - name: Build docs | |
| continue-on-error: ${{ github.ref != env.default-branch && github.event_name != 'pull_request' }} | |
| run: make doc_check_missing |