Skip to content

Extended the support of AAP2.5 (#8915) #5055

Extended the support of AAP2.5 (#8915)

Extended the support of AAP2.5 (#8915) #5055

---
name: Static Checks Push
on:
push:
branches:
- development
tags:
- v*
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
- 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
tox -c tests/static
...