Skip to content

Commit

Permalink
Merge pull request #38 from zeroday0619/ruff-check-gh-action
Browse files Browse the repository at this point in the history
GitHub action configure for ruff action
  • Loading branch information
gnh1201 authored Jul 13, 2024
2 parents feb7cff + 4be3fa4 commit 7abc36d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7abc36d

Please sign in to comment.