josephrw's picture
Upload .github/workflows/ci.yml with huggingface_hub
2245cf8 verified
Raw
History Blame Contribute Delete
527 Bytes
name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install ruff pytest
- run: ruff check app/
- run: python -m pytest tests/ -v || true
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build -t agent-workforce:latest .