Skip to content

Python package build and publish #14

Python package build and publish

Python package build and publish #14

Workflow file for this run

name: Python package build and publish
on:
release:
types: [created]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-dev.txt
- name: Install AList
run: bash -ex tests/init_alist.sh
env:
ALIST_VERSION: "3.29.1"
- name: Run Tests
run: |
python -m pytest --log-level=INFO
- name: Build
run: |
pip install twine build
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1