Merge pull request #10 from iterorganization/feature/cli #37
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: 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 |