Skip to content

Delete ansible/roles_ocp_workloads/roles_ocp_workloads.iml and roles_ocp_workloads1.iml #10416

Delete ansible/roles_ocp_workloads/roles_ocp_workloads.iml and roles_ocp_workloads1.iml

Delete ansible/roles_ocp_workloads/roles_ocp_workloads.iml and roles_ocp_workloads1.iml #10416

---
name: Static Checks Pull Request
on:
pull_request:
branches:
- development
jobs:
static-checks:
name: Run static tests using tox
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
steps:
- name: Get Repository Code
id: get_repo_code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run static checks
run: |
pip install tox==v4.0.8
tox -c tests/static -- ${{ github.base_ref }} ${{ github.sha }}
...