forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (79 loc) · 2.16 KB
/
lint-python.yaml
File metadata and controls
97 lines (79 loc) · 2.16 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Lint Python
on:
pull_request:
paths:
- 'py-polars/**'
- '.github/workflows/lint-python.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-python:
runs-on: ubuntu-latest
defaults:
run:
working-directory: py-polars
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'py-polars/requirements-lint.txt'
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install -r requirements-lint.txt
- name: Lint Python
run: |
black --check .
blackdoc --check .
ruff .
lint-rust:
runs-on: ubuntu-latest
defaults:
run:
working-directory: py-polars
steps:
- uses: actions/checkout@v3
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2023-02-14
components: rustfmt, clippy
- name: Cache Rust
uses: Swatinem/rust-cache@v2
with:
workspaces: py-polars
- name: Lint Rust
run: |
cargo fmt --all -- --check
make clippy
mypy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.11']
defaults:
run:
working-directory: py-polars
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
py-polars/requirements-dev.txt
py-polars/requirements-lint.txt
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements-lint.txt
# Allow untyped calls for older Python versions
- name: Run mypy
run: mypy ${{ (matrix.python-version == '3.7') && '--allow-untyped-calls' || '' }}