CoolFace
Apppublic

mnds18/agentic-ts-forecasting-system

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
ci_workflow.yaml36 linesDownload Raw Back to root
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