Skip to content

Add 5 retries for API timeouts #14

Add 5 retries for API timeouts

Add 5 retries for API timeouts #14

Workflow file for this run

---
name: Linting
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Set up pip caching
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Super-Linter
uses: super-linter/super-linter@v6.3.0
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: "main"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_CHECKOV: false
VALIDATE_PYTHON_MYPY: false