fix(patch): [sc-25617] add missed dependencies #12
  
    
      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: documentation | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-24.04 | |
| name: Ubuntu 24.04 | |
| steps: | |
| - name: Install Swift | |
| uses: tayloraswift/swift-install-action@master | |
| with: | |
| swift-prefix: "swift-6.1.2-release/ubuntu2404/swift-6.1.2-RELEASE" | |
| swift-id: "swift-6.1.2-RELEASE-ubuntu24.04" | |
| - name: Install Unidoc | |
| uses: tayloraswift/swift-unidoc-action@master | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Validate documentation | |
| run: | | |
| unidoc build \ | |
| --swift-toolchain $SWIFT_INSTALLATION \ | |
| --ci fail-on-errors \ | |
| --project-path . | |
| macos: | |
| runs-on: macos-15 | |
| name: macOS | |
| steps: | |
| - name: Install Unidoc | |
| uses: tayloraswift/swift-unidoc-action@master | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Select Xcode 16.4 | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer | |
| - name: Validate documentation | |
| run: | | |
| unidoc build \ | |
| --ci fail-on-errors \ | |
| --project-path . |