-
Notifications
You must be signed in to change notification settings - Fork 3
77 lines (76 loc) · 2.09 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: CI
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "assets/**"
- "*.md"
- "*.rst"
- "mindlessgen.toml"
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
- "assets/**"
- "*.md"
- "*.rst"
- "mindlessgen.toml"
workflow_dispatch:
jobs:
# Run linting and formatting with and static type checking with mypy
static-tests:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install linter and formatter
run: |
python -m pip install --upgrade pip
pip install ruff==0.5.7
- name: Run ruff linting
run: ruff check --no-fix
- name: Run ruff format
run: ruff format --check
- name: Install project and all dev dependencies
run: pip install -e ".[dev]"
- name: Run mypy
run: mypy .
# Run unittests with tox
tox:
needs: static-tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
# with '-e py' tox runs the python version of the current environment
- name: Unittests with tox
run: tox -e py
# Coverage does not work for private repos
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
# with:
# files: ./coverage.xml # optional