-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (46 loc) · 1.33 KB
/
formatting_and_linting.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
---
on:
push:
branches-ignore:
- main
permissions:
contents: read
jobs:
formatting_and_linting:
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.12'
- name: Set up cache for Python dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[formatting]
- name: Run ruff formatting
run: |
ruff format .
- name: Run ruff linting
run: |
ruff check --fix
- name: Commit changes
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Formatting and linting commit" || true
git push
- name: Run mypy
run: |
mypy --strict rundetection