chore: import upstream snapshot with attribution
Python package / build (3.10) (push) Successful in 8m51s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:35:30 +08:00
commit 8153d5ec9f
218 changed files with 38939 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!-- Thank you for your contribution! -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. -->
## Why are these changes needed?
<!-- Please give a short summary of the change and the problem this solves. -->
## Related issue number (if applicable)
<!-- For example: "Closes #1234" -->
## Checks
- [ ] I've run `format.sh` to lint the changes in this PR.
- [ ] I've included any doc changes needed.
- [ ] I've made sure the relevant tests are passing (if applicable).
+30
View File
@@ -0,0 +1,30 @@
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e '.[dev]'
- name: Run linter
run: |
pylint -d all -e E0602 ./fastchat/
- name: Check formatting
run: |
black --check .