mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
Some checks are pending
Package Check / distributions (push) Waiting to run
Pre-commit / run (ubuntu-latest) (push) Waiting to run
Tests ReMe / Unit Tests - py3.11 (push) Waiting to run
Tests ReMe / Unit Tests - py3.12 (push) Waiting to run
Tests ReMe / Unit Tests - py3.13 (push) Waiting to run
Windows Smoke / CLI smoke - py3.11 (push) Waiting to run
31 lines
727 B
YAML
31 lines
727 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@v4
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Update setuptools
|
|
run: |
|
|
pip install -U setuptools wheel
|
|
- name: Install
|
|
run: |
|
|
pip install -q -e packages/reme_ai_studio -e ".[dev,core]"
|
|
- name: Install pre-commit
|
|
run: |
|
|
pre-commit install
|
|
- name: Pre-commit starts
|
|
run: pre-commit run --all-files
|