Skip to content

Update fastapi api

Update fastapi api #2

Workflow file for this run

name: BaiduPCS-Py Build & Test
on:
push:
branches:
- master
pull_request:
branches:
- master
- release/*
jobs:
build-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ["3.8", "3.12"]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
- name: Install dependencies
run: |
poetry run pip3 install setuptools
poetry install --no-root
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: Format check
run: poetry run ruff format --check .
- name: Typecheck
run: poetry run ruff check baidupcs_py
- name: Test with pytest
run: |
poetry run python build.py build_ext --inplace
poetry run pytest -v -s
- name: Test package
run: |
poetry build -f sdist
poetry run pip install dist/*