Skip to content

Merge pull request #303 from jacobappleton-orbis/fix-278-299 #609

Merge pull request #303 from jacobappleton-orbis/fix-278-299

Merge pull request #303 from jacobappleton-orbis/fix-278-299 #609

Workflow file for this run

# .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