From cab24231a6ad48efaa46c5ab69734c82f4fa80d7 Mon Sep 17 00:00:00 2001 From: Kierre Date: Thu, 6 Nov 2025 21:16:36 +0000 Subject: [PATCH] I HAVE NO IDEA WHAT I AM DOING --- .gitea/workflows/test.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..0ebe3e9 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,24 @@ +name: pre-commit + +on: + push: + branches: + - master + +jobs: + precommit: + steps: + - name: checkout code + uses: actions/checkout@v2 + + - name: python + uses: actions/setup-python@v4 + with: + python-version: '3.12' + + - name: install + run: | + pip install pre-commit + + - name: run + run: pre-commit