From 1e7bec31b1eb1b0a786cb2ec240d853736ace92b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:03 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/lint.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 0000000..26b6103 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,26 @@ +name: Lint + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install lint tools + run: | + pip install ruff mypy + - name: Run ruff + run: | + ruff check . + - name: Run mypy + run: | + mypy shellgen/ --ignore-missing-imports