-
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (63 loc) · 1.42 KB
/
python.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
78
79
80
name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: write-all
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
IMAGE_CACHE_DIR: /tmp/cache/docker-image
IMAGE_CACHE_KEY: cache-image
jobs:
flake8:
name: Run flake8
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run flake8
env:
GENKAIERA_IS_CI: "1"
run: |
make flake8
mypy:
name: Run mypy
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run mypy
env:
GENKAIERA_IS_CI: "1"
run: |
make mypy
black:
name: Run black
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run black
env:
GENKAIERA_IS_CI: "1"
run: |
make black_check
pytest:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run pytest
env:
GENKAIERA_IS_CI: "1"
run: |
make pytest_ci
- name: Create Coverage Comment
id: coverageComment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: pytest-coverage.txt
junitxml-path: ./pytest.xml