Skip to content

feat(data): add yfinance crypto data fetcher #8

feat(data): add yfinance crypto data fetcher

feat(data): add yfinance crypto data fetcher #8

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: |
uv sync --all-extras
- name: Build documentation
run: |
source .venv/bin/activate
mkdocs build
- name: Deploy to GitHub Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
source .venv/bin/activate
mkdocs gh-deploy --force