From 22c695e370e54de44d6068de8498b0bd6c499e1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=97=90=EB=85=B9?= Date: Sun, 16 Jul 2023 18:50:49 +0900 Subject: [PATCH] =?UTF-8?q?github=20action=20lint=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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..423fbf1 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,13 @@ +name: Lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: self-hosted + steps: + - uses: actions/checkout@v3 + - uses: psf/black@stable + - uses: chartboost/ruff-action@v1 + with: + version: 0.0.272 \ No newline at end of file