-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 861 Bytes
/
Copy pathlinting.yml
File metadata and controls
33 lines (27 loc) · 861 Bytes
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
name: Linting
on:
push:
branches:
- main
pull_request:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Cache pre-commit
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up python
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
with:
python-version: "3.x"
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: python -m pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --color always --verbose