Files
microagents-llm/.github/workflows/python-ci.yml
Aymen 66d5667f99 feat: refactor ui code & add tests for caching (#9)
Refactoring UI Code (moving out of main.py)
Executing tests as part of CI
Adding a new test for caching
2023-12-25 09:03:01 +01:00

29 lines
494 B
YAML

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest discover -s tests