From 423497a19954dd8e2a4cab1cd798c0ace614f0a9 Mon Sep 17 00:00:00 2001 From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com> Date: Tue, 25 Jul 2023 11:25:08 +0200 Subject: [PATCH] feat: pre-commit action --- .github/workflows/pre-commit.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pre-commit.yml diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml new file mode 100644 index 0000000..b2d92ba --- /dev/null +++ b/.github/workflows/pre-commit.yml @@ -0,0 +1,14 @@ +name: pre-commit-ci-lite + +on: + push: + branches: [ "rewrite" ] + pull_request: + branches: [ "rewrite" ] + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: pre-commit-ci/lite-action@v1.0.1 + if: always()