Skip to content

feat: Evaluate daily NAVs #247

feat: Evaluate daily NAVs

feat: Evaluate daily NAVs #247

Workflow file for this run

name: SB Finance
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.10', '3.9']
# Service containers to run with `container-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres:10
# Provide the password for postgres
ports:
- 5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: finance_test
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black mypy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
- name: Lint with black and mypy
run: |
# Disable black for now...
# black --check .
mypy --install-types --non-interactive --ignore-missing-imports finance
- name: Test with pytest
run: |
pytest -v tests --cov finance --cov-report term-missing
env:
SBF_DB_URL: "postgresql://postgres:postgres@localhost/finance"
SBF_TEST_DB_URL: "postgresql://postgres:postgres@localhost/finance_test"
SBF_TESTING: true
PYTHONPATH: .