Skip to content

fix: fixing linting action and lint errors [2024-11-26] #50

fix: fixing linting action and lint errors [2024-11-26]

fix: fixing linting action and lint errors [2024-11-26] #50

name: HerdingCats Unit Tests
on:
push:
branches:
- main
paths:
- "tests/**"
jobs:
test:

Check failure on line 11 in .github/workflows/herding_cats_explorer_tests.yml

View workflow run for this annotation

GitHub Actions / HerdingCats Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/herding_cats_explorer_tests.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest requests loguru pandas polars duckdb==1.0.0 boto3 pyarrow
- name: Create pytest.ini
run: |
echo "[pytest]" > pytest.ini
echo "pythonpath = ." >> pytest.ini
- name: Run tests
run: pytest tests/