mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-14 09:14:14 +00:00
4dd0fb6d8a
The test and sync workflows are run both on the master and the edge branches.
36 lines
931 B
YAML
36 lines
931 B
YAML
name: Run tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, edge ]
|
|
pull_request:
|
|
branches: [ master, edge ]
|
|
|
|
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
|
|
- name: Install docs dependencies
|
|
run: pip install -r requirements/docs.txt
|
|
- name: Build docs
|
|
run: make docs
|