Skip to content

Debug Statements for Avro Clients #88

Debug Statements for Avro Clients

Debug Statements for Avro Clients #88

Workflow file for this run

name: Run Python unit tests
on:
pull_request:
actions: [ opened ]
jobs:
changelog:
name: Updates changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dangoslen/changelog-enforcer@v3
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install '.[development]'
- name: Run linter and test suite
run: |
make lint
make test