Merge pull request #38 from zeroday0619/ruff-check-gh-action
Some checks are pending
Ruff / ruff (push) Waiting to run

GitHub action configure for ruff action
This commit is contained in:
Namhyeon Go 2024-07-13 21:04:38 +09:00 committed by GitHub
commit 7abc36d66f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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