mnds18/agentic-ts-forecasting-system
0
1name: Agentic AI Forecasting CI2 3on:4 push:5 branches: [ main ]6 pull_request:7 branches: [ main ]8 9jobs:10 build-and-test:11 runs-on: ubuntu-latest12 steps:13 - name: โจ Checkout repository14 uses: actions/checkout@v315 16 - name: ๐พ Set up Python17 uses: actions/setup-python@v418 with:19 python-version: '3.10'20 21 - name: ๐ Install dependencies22 run: |23 python -m pip install --upgrade pip24 pip install -r requirements.txt25 26 - name: โ
Run tests with pytest27 run: |28 pytest -v test_agents.py29 30 - name: ๐ Upload test results (optional)31 if: always()32 uses: actions/upload-artifact@v333 with:34 name: test-results35 path: .pytest_cache36 