feat(hbi_utils & locust): Add timeout mechanism when waiting for Locust workers, Display clearer host count in exception message when not all hosts are read - display only the newly added host count for the error message to make more sense #288
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: CI for PRs | |
on: | |
pull_request: | |
branches: [master, main] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Super-Linter | |
uses: github/super-linter@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEFAULT_BRANCH: main | |
OUTPUT_FOLDER: linter_reports # super linter dumps results in this directory | |
OUTPUT_DETAILS: detailed | |
DISABLE_ERRORS: false | |
VALIDATE_PYTHON_ISORT: false | |
VALIDATE_PYTHON_MYPY: false | |
VALIDATE_ALL_CODEBASE: false #set this to true if you want the linter to always check the entire codebase instead of the committed changes. NOT CONVINIENT IF THERE IS A LOT OF CODE | |
VALIDATE_YAML: false | |
VALIDATE_CSS: false | |