GCP add user to project - add pause after billing to avoid the race c… #5101
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 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 | |
... |