6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-01-24 14:08:23 +00:00

38 lines
1018 B
YAML
Raw Normal View History

name: Run tests
on:
push:
branches: [ master, main, nightly ]
pull_request:
branches: [ master, main, nightly ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
2022-11-29 15:50:22 +01:00
- uses: actions/checkout@v3
- name: Set up Python
2022-11-29 15:50:22 +01:00
uses: actions/setup-python@v3
with:
python-version: 3.8
cache: 'pip'
2023-04-28 11:15:01 +02:00
cache-dependency-path: requirements/dev.txt
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- 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