feat(uniseg): 添加云湖平台适配器支持 #472
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test & Track | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'README.md' | |
| - 'docs.md' | |
| - 'example/**' | |
| - 'intro.md' | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| py_ver: ['3.10', '3.11', '3.12', '3.13'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| name: Ensure Python Runtime | |
| with: | |
| python-version: ${{matrix.py_ver}} | |
| architecture: 'x64' | |
| - name: Ensure PDM & twine | |
| run: | | |
| python3 -m pip install pdm | |
| - name: Install Package | |
| run: | | |
| pdm sync -G test -v | |
| - name: Test & Report | |
| run: | | |
| pdm run test |