From 56b9f3211c59c2e88c9399cdde2b333f4c5dbdfb Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Mon, 12 May 2025 19:22:50 +0300 Subject: [PATCH] ci: add simple workflow for pre-commit --- .gitea/workflows/pre-commit.yaml | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .gitea/workflows/pre-commit.yaml diff --git a/.gitea/workflows/pre-commit.yaml b/.gitea/workflows/pre-commit.yaml new file mode 100644 index 0000000..dee0316 --- /dev/null +++ b/.gitea/workflows/pre-commit.yaml @@ -0,0 +1,46 @@ +# ALR - Any Linux Repository +# Copyright (C) 2025 The ALR Authors +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +name: Pre-commit + +on: + push: + branches: [ main ] + pull_request: + + +jobs: + pre-commit: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: https://github.com/actions/checkout@v4 + + - name: Set up Go + uses: https://github.com/actions/setup-go@v5 + with: + go-version: '1.23' + + - name: Set up Python for pre-commit + uses: https://github.com/actions/setup-python@v5 + with: + python-version: '3.12' + + - run: pip install pre-commit + - run: pre-commit install + - run: pre-commit run --all-files \ No newline at end of file