Skip to content

Commit

Permalink
chore(CI): add debian check workflow
Browse files Browse the repository at this point in the history
  add debian check workflow

log: 增加debian检查工作流
  • Loading branch information
kuchune authored Jul 11, 2024
1 parent 75f7dcf commit eee36e2
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/call-api-check.yml
Original file line number Diff line number Diff line change
@@ -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
13 changes: 13 additions & 0 deletions .github/workflows/call-debian-check.yml
Original file line number Diff line number Diff line change
@@ -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
13 changes: 13 additions & 0 deletions .github/workflows/call-static-check.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit eee36e2

Please sign in to comment.