2021-05-17 13:39:46 +00:00
|
|
|
name: Run tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-09-28 16:18:36 +00:00
|
|
|
branches: [ master, nightly ]
|
2021-05-17 13:39:46 +00:00
|
|
|
pull_request:
|
2021-09-28 16:18:36 +00:00
|
|
|
branches: [ master, nightly ]
|
2021-05-17 13:39:46 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Upgrade pip
|
|
|
|
run: python -m pip install --upgrade pip setuptools==44.0.0
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -r requirements/dev.txt
|
|
|
|
- name: Static code analysis
|
|
|
|
run: make test-lint
|
|
|
|
- name: Python unit tests
|
|
|
|
run: make test-unit
|
|
|
|
- name: Static type checks
|
|
|
|
run: make test-types
|
|
|
|
- name: Code formatting
|
|
|
|
run: make test-format
|
|
|
|
- name: Package tests
|
|
|
|
run: make test-pythonpackage
|
2021-09-16 09:48:59 +00:00
|
|
|
- name: Install docs dependencies
|
|
|
|
run: pip install -r requirements/docs.txt
|
|
|
|
- name: Build docs
|
|
|
|
run: make docs
|