Skip to content

[CLOUDOPS-569] Allow retry on openstack HttpException #376

[CLOUDOPS-569] Allow retry on openstack HttpException

[CLOUDOPS-569] Allow retry on openstack HttpException #376

Workflow file for this run

name: linters
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
jobs:
super-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: github/super-linter@v4
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: true
VALIDATE_DOCKERFILE_HADOLINT: false
VALIDATE_PYTHON_MYPY: false
VALIDATE_JSCPD: false
pep8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y tox
- name: Run tox -e pep8
run: tox -e pep8