From 27bb1616c23b3b8f2f208a3403eedf7315db25a9 Mon Sep 17 00:00:00 2001 From: Euiseo Cha Date: Sat, 13 Jul 2024 18:35:03 +0900 Subject: [PATCH] feat: github action configure for ruff action --- .github/workflows/lint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..a100f15 --- /dev/null +++ b/.github/workflows/lint.yml @@ -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 \ No newline at end of file