forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (44 loc) · 1.2 KB
/
Copy pathlint.yml
File metadata and controls
49 lines (44 loc) · 1.2 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
on:
push:
branches:
- main
pull_request:
branches:
- main
- maintenance/**
paths-ignore:
- "**.md"
- "**.rst"
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
# To enable this job and subsequent jobs on a fork, comment out:
if: github.repository == 'numpy/numpy' && github.event_name != 'push'
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: recursive
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- name: Install linter requirements
run: python -m pip install -r requirements/linter_requirements.txt
- name: Run linter on PR
env:
BASE_REF: ${{ github.base_ref }}
run: spin lint
- name: Check Python.h is first file included
run: |
python tools/check_python_h_first.py