42 lines
837 B
YAML
42 lines
837 B
YAML
name: Python application
|
|
|
|
on:
|
|
push:
|
|
branches: [master, dev]
|
|
pull_request:
|
|
branches: [master, dev]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
cache: pip
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install ruff mypy uv types-tqdm
|
|
uv pip install ta-lib==0.6.4 --index=https://pypi.vnpy.com --system
|
|
uv pip install -e .[alpha,dev] --system
|
|
|
|
- name: Lint
|
|
run: ruff check .
|
|
|
|
- name: Type check
|
|
run: mypy vnpy
|
|
|
|
- name: Build
|
|
run: uv build
|