Parse errors in http binding protocols #1678
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: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
env: | |
UV_SYSTEM_PYTHON: true | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.13"] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'corretto' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
activate-environment: true | |
- name: Setup workspace | |
run: | | |
export UV_PROJECT_ENVIRONMENT="${pythonLocation}" | |
echo "UV_PROJECT_ENVIRONMENT=$UV_PROJECT_ENVIRONMENT" >> "$GITHUB_ENV" | |
make install | |
- name: Check python packages | |
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 |