forked from triplea-game/triplea
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Codacy & Rename and combine github workflow actions (triplea-gam…
…e#10779) (1) Drops codacy - the static analysis is useful but in practice we tend to ignore the codacy warnings. Usually PMD will pick up any problems that codacy highlights, otherwise it is usually problems in existing code that are flagged. (2) Combine workflow actions together and organize them. Static code checks are prefixed with 'check-*', testing tasks are prefixed with 'testing-*', and all on-merge-to-master release actions are now in 'do-release.yml' Actions that are run on-demand, are now prefixed with 'run-*'
- Loading branch information
1 parent
bc9a21a
commit 9bcafcd
Showing
15 changed files
with
41 additions
and
152 deletions.
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
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,18 @@ | ||
name: Static Checks | ||
on: pull_request | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run Code Convention Checks | ||
run: .build/code-convention-checks/run | ||
- name: Find Unused DbUnit Datasets | ||
run: .build/find-unused-or-unmatched-tests/find-unused-dbunit-datasets | ||
- name: Find Orphaned Tests | ||
run: .build/find-unused-or-unmatched-tests/find-orphaned-tests | ||
- name: Check Links are Valid | ||
run: .build/check-links-and-yaml-syntax/check-links | ||
- name: Validate YAML Formatting | ||
run: ./gradlew validateYamls | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.