c3bf08ac8d
K8s Workspace Integration Tests / k8s-workspace-tests (push) Waiting to run
Pre-commit / run (ubuntu-latest) (push) Waiting to run
Python Unittest Coverage / test (macos-15, 3.11) (push) Waiting to run
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Waiting to run
Python Unittest Coverage / test (windows-latest, 3.11) (push) Waiting to run
Web UI / check (push) Waiting to run
36 lines
932 B
YAML
36 lines
932 B
YAML
name: Pre-commit
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: True
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
env:
|
|
OS: ${{ matrix.os }}
|
|
PYTHON: '3.11'
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Install AgentScope
|
|
run: |
|
|
uv pip install -q -e .[dev]
|
|
- name: Install pre-commit
|
|
run: |
|
|
pre-commit install
|
|
- name: Pre-commit starts
|
|
run: |
|
|
pre-commit run --all-files > pre-commit.log 2>&1 || true
|
|
cat pre-commit.log
|
|
if grep -q Failed pre-commit.log; then
|
|
echo -e "\e[41m [**FAIL**] Please install pre-commit and format your code first. \e[0m"
|
|
exit 1
|
|
fi
|
|
echo -e "\e[46m ********************************Passed******************************** \e[0m"
|