From 970d48ba39b4c81da9d3e01c39622ec7938e2eb7 Mon Sep 17 00:00:00 2001 From: Chris Schindlbeck Date: Thu, 15 Aug 2024 08:24:04 +0200 Subject: [PATCH] add precommit github actions ci --- .github/workflows/precommit.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/precommit.yaml diff --git a/.github/workflows/precommit.yaml b/.github/workflows/precommit.yaml new file mode 100644 index 000000000..8ef83247f --- /dev/null +++ b/.github/workflows/precommit.yaml @@ -0,0 +1,16 @@ +--- +name: pre-commit + +on: + pull_request: + push: + # branches: [main] + branches: [fix-docs] + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 + - uses: pre-commit/action@v3.0.1