Skip to content

Merge pull request #4 from msatul1305/codex/create-smart-portfolio-re… #21

Merge pull request #4 from msatul1305/codex/create-smart-portfolio-re…

Merge pull request #4 from msatul1305/codex/create-smart-portfolio-re… #21

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: Flask_py
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: python -m unittest test_rebalancer.py
- name: Compile check
run: python -m py_compile app.py test_rebalancer.py wsgi.py