Suppress opening browser for reg-creds in order to run in Docker container #461
Workflow file for this run
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: format | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
- name: Install dependencies | |
run: | | |
pip3 install .[dev] | |
- name: Run tests | |
run: | | |
ss-manager -h | |
flake8 statements_manager/ setup.py | |
isort statements_manager/ setup.py --check --diff | |
black --check --diff statements_manager/ setup.py | |
mypy statements_manager/ setup.py |