feat: remove direct image polling, removed timeout from loader, some … #102
Workflow file for this run
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: Check JSON Keys | |
on: | |
push: | |
branches: | |
- feature/* | |
- hotfix/* | |
- release/* | |
- bugfix/* | |
- main | |
jobs: | |
verify_json_keys: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run check_json_keys.sh | |
run: | | |
chmod +x ./bin/check_json_keys.sh | |
./bin/check_json_keys.sh | |
- name: Create artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: validation-report | |
path: validation_report.log |