From b4ec61e0a3f7e0a962e9ea1bd46a91f92b5d386a Mon Sep 17 00:00:00 2001 From: xxq250 Date: Mon, 13 Apr 2026 16:07:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20.gitea/workflows/demo.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/demo.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitea/workflows/demo.yml diff --git a/.gitea/workflows/demo.yml b/.gitea/workflows/demo.yml new file mode 100644 index 0000000..18d592a --- /dev/null +++ b/.gitea/workflows/demo.yml @@ -0,0 +1,31 @@ +name: demo + +on: push + +jobs: + lint: + name: Lint Check + runs-on: ubuntu-latest-with-xxq + steps: + - name: Checkout (attempt 1) + id: checkout1 + uses: https://gitlink.org.cn/actions/checkout@master + with: + repository: innov/vllm-plugin-FL.git + ref: main + - name: Set up Python + uses: https://gitlink.org.cn/actions/setup-python@master + with: + python-version: "3.12" + + - name: Install ruff + run: pip install ruff + + - name: Ruff check + run: ruff check --output-format=github . + + - name: Ruff format check + run: ruff format --check . + + - name: Typos check + uses: https://gitlink.org.cn/actions/typos@v1 #crate-ci/typos@v1 \ No newline at end of file