Skip to content

Merge pull request #10 from iterorganization/feature/cli #37

Merge pull request #10 from iterorganization/feature/cli

Merge pull request #10 from iterorganization/feature/cli #37

Workflow file for this run

name: Test using pytest
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[all]
- name: Run Ruff linter
run: ruff check --output-format=github
- name: Run Ruff formatter
run: ruff format --diff
- name: Run tests
run: |
# Start Kafka server (with docker):
docker run -d -p 9092:9092 apache/kafka:4.1.0
export KAFKA_HOST=localhost:9092
# Run pytest
pytest --cov=imas_streams --cov-report=term-missing