2019-06-21 09:56:10 +00:00
|
|
|
name: Linting
|
2021-07-24 16:30:45 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-24 14:56:23 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
2021-07-24 16:30:45 +00:00
|
|
|
- name: Run pre-commit linting
|
2023-02-24 14:56:23 +00:00
|
|
|
uses: pre-commit/action@v3.0.0
|