-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (90 loc) · 2.74 KB
/
main.yaml
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Main
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ env.REPOSITORY_NAME }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Init python/poetry environment
uses: ./.github/actions/setup-poetry-env
- name: Run pre-commit
run: poetry run pre-commit run -a --show-diff-on-failure
- name: Inspect dependencies
run: poetry run deptry .
- name: Check Poetry lock file consistency
run: poetry lock --check
- name: black
run: poetry run black --check ./hitfactorpy ./tests
- name: flake8
run: poetry run flake8 ./hitfactorpy ./tests
- name: isort
run: poetry run isort --check ./hitfactorpy ./tests
typecheck:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.mypy_cache
key: mypy-cache-${{ env.REPOSITORY_NAME }}-${{ hashFiles('pyproject.toml') }}
- name: Init python/poetry environment
uses: ./.github/actions/setup-poetry-env
- run: poetry run mypy ./hitfactorpy ./tests
tox:
needs:
- quality
- typecheck
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
# - windows-latest
python-version: ['3.10', '3.11']
fail-fast: true
runs-on: ${{ matrix.platform }}
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox
env:
PLATFORM: ${{ matrix.platform }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
check-docs:
needs:
- quality
- typecheck
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
- name: Install docs dependencies group
run: poetry install --no-interaction --with docs
shell: bash
- name: Check if documentation can be built
run: poetry run mkdocs build -s