From 91c24ff91f469d2306a9868f230f798b1b509e87 Mon Sep 17 00:00:00 2001 From: fboundy Date: Thu, 14 Dec 2023 20:54:10 +0000 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7ec8824 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,14 @@ +name: code-quality +on: + pull_request: +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: pre-commit/action@v3.0.0 + - uses: pre-commit-ci/lite-action@v1.0.1 + if: always()