-
-
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.
- Loading branch information
1 parent
f1a3f07
commit 5dea51b
Showing
3 changed files
with
35 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,10 +68,17 @@ jobs: | |
id: analysis | ||
with: | ||
relativePath: packages/athena_postgres | ||
- uses: fujidaiti/[email protected] | ||
with: | ||
report: ${{ steps.analysis.outputs.json_output }} # Required | ||
min-pub-points: 120 | ||
- name: Check scores | ||
env: | ||
# NB: "analysis" is the id set above. Replace it with the one you used if different. | ||
TOTAL: ${{ steps.analysis.outputs.total }} | ||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }} | ||
run: | | ||
if (( $TOTAL < 100 )) | ||
then | ||
echo Score too low! | ||
exit 1 | ||
fi | ||
athena_sql: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -80,10 +87,17 @@ jobs: | |
id: analysis | ||
with: | ||
relativePath: packages/athena_sql | ||
- uses: fujidaiti/[email protected] | ||
with: | ||
report: ${{ steps.analysis.outputs.json_output }} # Required | ||
min-pub-points: 120 | ||
- name: Check scores | ||
env: | ||
# NB: "analysis" is the id set above. Replace it with the one you used if different. | ||
TOTAL: ${{ steps.analysis.outputs.total }} | ||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }} | ||
run: | | ||
if (( $TOTAL < 100 )) | ||
then | ||
echo Score too low! | ||
exit 1 | ||
fi | ||
athena_utils: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -92,7 +106,14 @@ jobs: | |
id: analysis | ||
with: | ||
relativePath: packages/athena_utils | ||
- uses: fujidaiti/[email protected] | ||
with: | ||
report: ${{ steps.analysis.outputs.json_output }} # Required | ||
min-pub-points: 120 | ||
- name: Check scores | ||
env: | ||
# NB: "analysis" is the id set above. Replace it with the one you used if different. | ||
TOTAL: ${{ steps.analysis.outputs.total }} | ||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }} | ||
run: | | ||
if (( $TOTAL < 100 )) | ||
then | ||
echo Score too low! | ||
exit 1 | ||
fi |
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