mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
Some checks failed
CI / DSH plugin / Validate DSH plugin (push) Has been cancelled
CI / OpenClaw plugin / Validate OpenClaw plugin (push) Has been cancelled
CI / Python packages / Build and verify distributions (push) Has been cancelled
CI / Python quality / GitHub Actions (push) Has been cancelled
CI / Python quality / Pre-commit (push) Has been cancelled
CI / Python tests / Unit Tests - py3.11 (push) Has been cancelled
CI / Python tests / Unit Tests - py3.12 (push) Has been cancelled
CI / Python tests / Unit Tests - py3.13 (push) Has been cancelled
CI / Python tests / Unit Tests - py3.14 (push) Has been cancelled
CI / ReMe Studio / Studio checks (push) Has been cancelled
CI / Windows / CLI smoke - py3.11 (push) Has been cancelled
Deploy / Documentation / Build documentation (push) Has been cancelled
Security / CodeQL / Analyze javascript-typescript (push) Has been cancelled
Security / CodeQL / Analyze python (push) Has been cancelled
Deploy / Documentation / deploy (push) Has been cancelled
* chore(ci): harden and split workflows * fix(ci): support token-based npm publishing * test: make disappearing resource check portable * fix(ci): make Studio releases recoverable * fix(ci): stop Studio publishing on cancellation
40 lines
1 KiB
YAML
40 lines
1 KiB
YAML
name: CI / Python packages
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/workflows/ci-packages.yml'
|
|
- '.github/workflows/_build-python-packages.yml'
|
|
- '.github/workflows/release-python.yml'
|
|
- 'pyproject.toml'
|
|
- 'README.md'
|
|
- 'reme/**'
|
|
- 'scripts/bump_version.py'
|
|
- 'tests/unit/test_package_versions.py'
|
|
- 'LICENSE'
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/workflows/ci-packages.yml'
|
|
- '.github/workflows/_build-python-packages.yml'
|
|
- '.github/workflows/release-python.yml'
|
|
- 'pyproject.toml'
|
|
- 'README.md'
|
|
- 'reme/**'
|
|
- 'scripts/bump_version.py'
|
|
- 'tests/unit/test_package_versions.py'
|
|
- 'LICENSE'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
distributions:
|
|
name: Build and verify distributions
|
|
uses: ./.github/workflows/_build-python-packages.yml
|