From ba614bc7efdb83e6bbfb7213ab7dddb6cca04bd5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:26 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/pre-commit.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/pre-commit.yml diff --git a/.gitea/workflows/pre-commit.yml b/.gitea/workflows/pre-commit.yml new file mode 100644 index 0000000..b78c5b7 --- /dev/null +++ b/.gitea/workflows/pre-commit.yml @@ -0,0 +1,17 @@ +name: Pre-Commit + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - uses: pre-commit/action@v3.0.1