From bb9d360d8fe57b84dadd5f2797be51b78bfb997a Mon Sep 17 00:00:00 2001 From: Logan Fick Date: Sat, 5 Apr 2025 10:37:56 -0400 Subject: [PATCH] Added Gitea Actions workflow for linting source code. --- .gitea/workflows/lint.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..7c77814 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -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