generated from seyLu/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (45 loc) · 1.23 KB
/
lint.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
52
53
54
55
56
name: Lint
run-name: Linting ${{ github.repository }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Perform lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@951b48540b429070694bc8abd82fd6901eb123ca # v2.5.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v3.5.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v4.7.0
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install and upgrade PIP
run: python -m pip install --upgrade pip
- name: Install Dependencies
run: >
pip install
ruff
mypy
- name: Ruff Linter
run: ruff check . --diff
- name: Ruff Formatter
run: ruff format .
- name: Mypy Type Checker
run: >
mypy .
--install-types
--non-interactive
--ignore-missing-imports