mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
962becb9a5
* validate python formatting on every build with Ruff * fix lint warnings
18 lines
268 B
YAML
18 lines
268 B
YAML
name: Python linting
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
types: [ opened, synchronize ]
|
|
|
|
jobs:
|
|
ruff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Lint with Ruff
|
|
uses: chartboost/ruff-action@v1
|