update dependencies and fix mypy and pylint issues #611
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
# .github/workflows/test.yml | |
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
make setup-dev | |
- name: Install the package to make sure nothing is randomly broken | |
run: | | |
make install | |
- name: Run pytest (unit tests) and bandit (security test) | |
run: | | |
make security-test | |
make test | |
- name: Run mypy (static type check) | |
run: | | |
make type-check |