Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbuphy committed Oct 18, 2024
1 parent 4fb1011 commit fd676f8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 135 deletions.
135 changes: 0 additions & 135 deletions .github/workflows/check.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/check_prompt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Check Prompt

permissions: read-all

on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
branches:
- main
paths:
- 'test/prompt/**'
- 'tainji/prompt/**'
- '.ci/**'
push:
branches:
- main
paths:
- 'test/prompt/**'
- 'tainji/prompt/**'
- '.ci/**'
jobs:
check :
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # 检出完整的提交历史

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: check the prompt
run: |
python .ci/check.py

0 comments on commit fd676f8

Please sign in to comment.