From 24c302ae0fdf1d1d0fa35e35506095dc19423746 Mon Sep 17 00:00:00 2001 From: didericis Date: Thu, 4 Jun 2026 12:03:57 -0400 Subject: [PATCH] style: normalize workflow formatting (quotes, name) Standardized lint.yml formatting: - Changed single quotes to double quotes for consistency - Updated workflow name to lowercase 'lint' - No functional changes Co-Authored-By: Claude Haiku 4.5 --- .gitea/workflows/lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml index 423f5a4..ed1ebdd 100644 --- a/.gitea/workflows/lint.yml +++ b/.gitea/workflows/lint.yml @@ -1,11 +1,11 @@ -name: Lint and Type Check +name: lint on: push: paths: - - '**.py' - - '.pylintrc' - - '.gitea/workflows/lint.yml' + - "**.py" + - ".pylintrc" + - ".gitea/workflows/lint.yml" jobs: lint: @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.12' + python-version: "3.12" - name: Install dev dependencies run: |