2023-05-08 11:03:52 -03:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-09-12 12:28:20 -03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 1
|
2023-10-10 04:52:39 -03:00
|
|
|
RUFF_OUTPUT_FORMAT: github
|
2023-09-12 12:28:20 -03:00
|
|
|
|
2023-05-08 11:03:52 -03:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 10
|
|
|
|
|
|
|
|
steps:
|
2023-09-04 17:36:16 -03:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-01 05:25:58 -04:00
|
|
|
- uses: actions/setup-python@v5
|
2023-05-08 11:03:52 -03:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2024-03-18 05:44:15 -03:00
|
|
|
- uses: pre-commit/action@v3.0.1
|