Updating #562
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: Python package | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.7, 3.8] | |
# Service containers to run with `runner-job` | |
services: | |
# Label used to access the service container | |
vault: | |
# Docker Hub image | |
image: hashicorp/vault:1.13.3 | |
options: --name vault-test | |
ports: | |
# Opens tcp port 8200 on the host and service container | |
- 8200:8200 | |
env: | |
VAULT_DISABLE_MLOCK: True | |
VAULT_ADDR: http://localhost:8200 | |
VAULT_DEV_ROOT_TOKEN_ID: myroot | |
postgres: | |
# Docker Hub image | |
image: postgres | |
options: --name pg13 | |
ports: | |
# Opens tcp port 5432 on the host and service container | |
- 5432:5432 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_HOST_AUTH_METHOD: trust | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements.test.txt | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics | |
- name: Test with pytest | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODE_COV_TOKEN }} | |
VAULT_ADDR: http://localhost:8200 | |
VAULT_TOKEN: "myroot" | |
run: | | |
pytest -s --cov=gestalt tests/*.py | |
- name: Typecheck with mypy | |
run: | | |
# run mypy strict mode on gestalt | |
mypy --strict gestalt | |
- name: Style check with yapf | |
run: | | |
yapf -d --recursive . |