ci: fix the repository url #2
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| java: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: ['21', '25'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: ${{ matrix.java }} | |
| cache: maven | |
| - name: Verify and install SDK | |
| run: mvn --batch-mode --no-transfer-progress install | |
| - name: Build examples | |
| run: mvn --batch-mode --no-transfer-progress -f examples/pom.xml verify | |
| - name: Package SDK | |
| if: matrix.java == '21' | |
| run: mvn --batch-mode --no-transfer-progress package source:jar javadoc:jar | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| cache: pip | |
| - run: pip install -r requirements.txt | |
| - run: mkdocs build --strict |