6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-28 04:09:01 +00:00
tutor/.github/workflows/test.yml
Régis Behmo 5c5cd266f2 ci: allow manual trigger of "release" action
This is useful when the generation of a macOS binary has failed, for
instance.

In addition, we restore checking for the `gh` utility. This is necessary
when running CI locally with `act`.

In addition, we cache pip dependencies on github release and test runs.
2023-04-28 11:11:49 +02:00

37 lines
960 B
YAML

name: Run tests
on:
push:
branches: [ master, nightly ]
pull_request:
branches: [ master, nightly ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
cache: 'pip'
- 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