forked from pola-rs/polars
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (45 loc) · 1.16 KB
/
lint-python.yaml
File metadata and controls
49 lines (45 loc) · 1.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
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:
main:
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 .
- name: Set up Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-12-20
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