[Dependabot]: Bump org.webjars:swagger-ui from 5.18.2 to 5.25.3 in /application #1264
Workflow file for this run
This file contains hidden or 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 code format and quality" | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| check-code-quality: | |
| runs-on: ubuntu-latest | |
| env: | |
| TERM: xterm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check text files format | |
| run: | | |
| build/automation/etc/githooks/scripts/editorconfig-pre-commit.sh | |
| - name: Check Python files format | |
| run: | | |
| build/automation/etc/githooks/scripts/python-code-pre-commit.sh | |
| - name: Check Terraform files format | |
| run: | | |
| build/automation/etc/githooks/scripts/terraform-format-pre-commit.sh | |
| - name: Create coverage report | |
| run: | | |
| make compile coverage-report |