Skip to content

fix(streaming): filter non-streamable files by extension #27

fix(streaming): filter non-streamable files by extension

fix(streaming): filter non-streamable files by extension #27

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
# Test across Python versions and OSes
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Only test on supported Python versions (3.11+)
python-version: ["3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests with coverage
run: |
pytest --cov=polystore --cov-report=xml --cov-report=html --cov-report=term-missing -v
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: false
# Code quality checks
code-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff black mypy
- name: Run ruff (linting)
run: |
ruff check src/ --output-format=github
- name: Run black (formatting check)
run: |
black --check src/
- name: Run mypy (type checking)
continue-on-error: true
run: |
mypy src/ --ignore-missing-imports
# Kaggle integration test

Check failure on line 77 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 77
kaggle:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: kaggle Action
uses: Frederisk/kaggle-action@v1.0.0