Haydenbaker/reorg python #1283
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: | |
| branches: | |
| - develop | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: 'corretto' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup workspace | |
| run: | | |
| 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 |