chore: midas app app flags #701
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
name: App Load Params db check CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
pull_request: | |
jobs: | |
app_load_params_db_check: | |
name: App Load Params db check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run JQ check | |
run: jq -e . app-load-params-db.json >/dev/null | |
- name: Run linting check | |
run: scripts/app_load_params_lint.py --database_path app-load-params-db.json --check_lint | |
- name: Run appnames check | |
run: scripts/app_load_params_lint.py --database_path app-load-params-db.json --check_appnames |