2021-08-12 11:09:50 +03:00
|
|
|
name: Lint
|
|
|
|
|
2022-01-02 22:47:56 +03:00
|
|
|
on: [push, pull_request, workflow_dispatch]
|
2021-08-12 11:09:50 +03:00
|
|
|
|
2022-10-27 14:47:59 +03:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-08-12 11:09:50 +03:00
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2022-01-04 01:29:34 +03:00
|
|
|
name: Lint
|
|
|
|
|
2021-08-12 11:09:50 +03:00
|
|
|
steps:
|
2022-03-04 12:57:39 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-20 01:13:22 +03:00
|
|
|
- uses: actions/setup-python@v4
|
2022-11-09 12:09:56 +03:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2022-09-20 01:13:22 +03:00
|
|
|
- uses: pre-commit/action@v3.0.0
|