-
Notifications
You must be signed in to change notification settings - Fork 3
76 lines (64 loc) · 1.69 KB
/
Copy pathci-python.yml
File metadata and controls
76 lines (64 loc) · 1.69 KB
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
name: CI for Python
on:
push:
branches:
- main
pull_request:
branches:
- "**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
code_format:
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup-python-poetry
with:
python-version: 3.14.2
poetry-version: 2.3.1
path: kos-loader
install-dev: true
- name: Black
working-directory: kos-loader
shell: bash
run: poetry run black --check ./kos_loader
- name: isort
working-directory: kos-loader
shell: bash
run: poetry run isort --check ./kos_loader
type_check:
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup-python-poetry
with:
python-version: 3.14.2
poetry-version: 2.3.1
path: kos-loader
install-dev: true
- name: Mypy - type checking
working-directory: kos-loader
shell: bash
run: poetry run mypy ./kos_loader
lint:
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup-python-poetry
with:
python-version: 3.14.2
poetry-version: 2.3.1
path: kos-loader
install-dev: true
- name: PyLint - linter
working-directory: kos-loader
shell: bash
run: poetry run pylint ./kos_loader