-
Notifications
You must be signed in to change notification settings - Fork 11
51 lines (42 loc) · 935 Bytes
/
github-ci.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
name: CI
on:
push:
branches: [ main ]
paths-ignore:
- '**/*.md'
- '**/*.rst'
pull_request:
branches: [ main ]
paths-ignore:
- '**/*.md'
- '**/*.rst'
workflow_dispatch:
jobs:
codestyle:
name: Check code style issues
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install hPyT
run: |
python -m pip install .
- name: Install Dependencies
run: |
python -m pip install ruff
python -m pip install mypy
- name: Test and Lint with Ruff
run: |
ruff check .
ruff format --check .
- name: Test with Mypy
run: |
mypy hPyT