-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from biolink/add_resources_to_automation
fix gen-python, remove inlining, and add test for schema validation
- Loading branch information
Showing
16 changed files
with
214 additions
and
503 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
branches: | ||
- main | ||
schedule: | ||
- cron: '0 5 * * 1' # at 05:00 UTC every Monday | ||
- cron: '0 7 * * 1' # at 07:00 UTC every Monday | ||
workflow_dispatch: | ||
types: trigger-build-artifacts | ||
|
||
|
@@ -40,8 +40,8 @@ jobs: | |
run: | | ||
poetry install | ||
make gen-project | ||
make sankey | ||
make test_pr | ||
make sankey | ||
make gendoc | ||
if [ $? -eq 0 ]; then | ||
git config --local user.email "[email protected]" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,19 +26,8 @@ jobs: | |
pip install poetry | ||
poetry install | ||
- name: Run URL validation and regenerate sankey diagram | ||
- name: Run URL validation | ||
run: | | ||
make sankey | ||
make test | ||
if [ $? -eq 0 ]; then | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add project/* | ||
git add src/* | ||
git add infores_catalog.yaml | ||
git commit -m "Regenerate data_flow diagram and validate URLs in infores_catalog.yaml" | ||
git push | ||
else | ||
echo "'make' validation and sankey generation failed to finish successfully" | ||
fi | ||
make check_urls | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.