Added Gitea Actions workflow for linting source code.

This commit is contained in:
2025-04-05 10:37:56 -04:00
parent 60f8b21c16
commit bb9d360d8f

19
.gitea/workflows/lint.yml Normal file
View File

@@ -0,0 +1,19 @@
name: Lint Source Code
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python environment
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Run linter
uses: psf/black@stable