feat: github action configure for ruff action

This commit is contained in:
Euiseo Cha 2024-07-13 18:35:03 +09:00
parent 7b2d3529f5
commit 27bb1616c2
No known key found for this signature in database
GPG Key ID: 39F74FF9CEA87CC9

13
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Ruff
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1