Skip to content

resolve stream data splitting issue #492

resolve stream data splitting issue

resolve stream data splitting issue #492

Workflow file for this run

name: Python CI
on:
push:
defaults:
run:
working-directory: agency
jobs:
tests-and-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
cache: "poetry"
python-version-file: "agency/.python-version"
- name: Install dependencies
run: poetry install
- name: Linting & formatting
run: make lint & make fmt-check
- name: Run tests
run: make test