forked from icsharpcode/SharpZipLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR icsharpcode#523: Fix Codacy workflows
* Fix typo and set max allowed to 9999 * Add codacy config * Update on-push.yml * Add project token to Push WF * Add project token to PR WF * Add Codacy upload to push WF * Add Codacy upload to PR WF
- Loading branch information
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
exclude_paths: | ||
- 'docs/**/*' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,11 @@ jobs: | |
uses: actions/checkout@v2 | ||
- name: Run codacy-analysis-cli | ||
uses: codacy/[email protected] | ||
with: | ||
# The current issues needs to be fixed before this can be removed | ||
max-allowed-issues: 9999 | ||
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | ||
upload: true | ||
|
||
Package: | ||
needs: [BuildAndTest] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,12 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Run codacy-analysis-cli | ||
uses: codacy/codacy-analysis-cli-action@@1.0.1 | ||
uses: codacy/[email protected] | ||
with: | ||
# The current issues needs to be fixed before this can be removed | ||
max-allowed-issues: 9999 | ||
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | ||
upload: true | ||
|
||
Pack: | ||
needs: [Build, Test] | ||
|