Skip to content

Haydenbaker/reorg python #1283

Haydenbaker/reorg python

Haydenbaker/reorg python #1283

Workflow file for this run

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