From c66705142510fe701dc28591d7498e422ae2f8e5 Mon Sep 17 00:00:00 2001 From: kuchune <66342239+kuchune@users.noreply.github.com> Date: Thu, 11 Jul 2024 14:06:08 +0800 Subject: [PATCH] chore(CI): add debian check workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add debian check workflow log: 增加debian检查工作流 --- .github/workflows/call-api-check.yml | 13 +++++++++++++ .github/workflows/call-debian-check.yml | 13 +++++++++++++ .github/workflows/call-static-check.yml | 13 +++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 .github/workflows/call-api-check.yml create mode 100644 .github/workflows/call-debian-check.yml create mode 100644 .github/workflows/call-static-check.yml diff --git a/.github/workflows/call-api-check.yml b/.github/workflows/call-api-check.yml new file mode 100644 index 000000000..3f9cde70b --- /dev/null +++ b/.github/workflows/call-api-check.yml @@ -0,0 +1,13 @@ +name: apiCheck +on: + pull_request_target: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + api-check: + uses: linuxdeepin/.github/.github/workflows/api-check.yml@master + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/call-debian-check.yml b/.github/workflows/call-debian-check.yml new file mode 100644 index 000000000..a35159d8c --- /dev/null +++ b/.github/workflows/call-debian-check.yml @@ -0,0 +1,13 @@ +name: debianCheck +on: + pull_request_target: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + debian-check: + uses: linuxdeepin/.github/.github/workflows/debian-check.yml@master + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/call-static-check.yml b/.github/workflows/call-static-check.yml new file mode 100644 index 000000000..4ed868314 --- /dev/null +++ b/.github/workflows/call-static-check.yml @@ -0,0 +1,13 @@ +name: staticCheck +on: + pull_request_target: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + static-check: + uses: linuxdeepin/.github/.github/workflows/static-check.yml@master + secrets: inherit \ No newline at end of file