blob: c3b0017c84d3ab2d880bcd8bd252f8accb71a70d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
name: Linting
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Run pre-commit linting
uses: pre-commit/action@v3.0.1
|