Skip to content

Version 0.7.0

Version 0.7.0 #101

Workflow file for this run

name: AliPCS-Py Build & Test
on: [push, pull_request]
jobs:
build-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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 alipcs_py
- name: Test with pytest
run: |
poetry run python build.py build_ext --inplace
poetry run pytest -s tests/test_common.py
- name: Test package
run: |
poetry build -f sdist
poetry run pip install dist/*