Bug Fix: Wait for AAP deployment to finish #10364
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: 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 }} | |
... |