fix: 修复拓展坞外接4k屏注销后登录界面位置错误的问题 #55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: cppcheck | |
| on: | |
| pull_request_target: | |
| paths-ignore: | |
| - ".github/workflows/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-pull/${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| cppchceck: | |
| name: cppcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: export | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| persist-credentials: false | |
| - uses: linuxdeepin/action-cppcheck@main | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| repository: ${{ github.repository }} | |
| pull_request_id: ${{ github.event.pull_request.number }} | |
| allow_approve: false |