Bump apache/skywalking-eyes from c72515a64b6445f7b079c9cb517271ff65410948 to 8c96ee223558797cdd9eba82c0919258e1cf2dad #2166
Workflow file for this run
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12", "3.13", "3.14"] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| persist-credentials: false | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 | |
| with: | |
| java-version: 17 | |
| distribution: 'corretto' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c | |
| - name: Install uv and set the Python version | |
| uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| activate-environment: true | |
| enable-cache: true | |
| - name: Install pandoc | |
| uses: pandoc/actions/setup@86321b6dd4675f5014c611e05088e10d4939e09e | |
| with: | |
| version: 3.8.2 | |
| - name: Setup workspace | |
| run: | | |
| make install | |
| - name: Check python packages | |
| if: ${{ matrix.python-version == '3.12' }} | |
| run: | | |
| make check-py | |
| - name: Test python packages | |
| run: | | |
| make test-py | |
| - name: Build python packages | |
| run: | | |
| make build-py | |
| - name: Build (and test) java packages | |
| run: | | |
| make build-java | |
| - name: Run protocol tests | |
| run: | | |
| make test-protocols |