-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (45 loc) · 1.21 KB
/
main.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
---
name: "Lint and run tests"
on:
pull_request:
branches:
- '**'
push:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8==7.1.1 flake8-import-order==0.18.2 darglint==1.8.1 codespell mypy types-requests
- name: Lint with flake8
run: |
flake8 --statistics
- name: Check static typing
run: |
mypy yoda_eus --explicit-package-bases
- name: Check code for common misspellings
run: |
codespell -q 3 --skip="*.r,*.xsd,*.json" || true
- name: Check McCabe complexity
run: |
flake8 --max-complexity 10 || true
- name: Basic flake8 check
run: |
flake8 yoda_eus --select=E999,F63,F7,F82,F831
- name: Install package for tests
run: |
pip install wheel
pip install .[test]
- name: Run tests
run: |
cd yoda_eus
python3 -m pytest