Skip to content

chore: migrate to docker compose v2 #10

chore: migrate to docker compose v2

chore: migrate to docker compose v2 #10

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Check formatting with black
run: |
black --check .
- name: Check import sorting with isort
run: |
isort --check-only .
- name: Run basic syntax check
run: |
python -m py_compile pypistats/*.py pypistats/**/*.py
- name: Success
run: |
echo "✅ All checks passed!"