style: normalize workflow formatting (quotes, name)
lint / lint (push) Successful in 1m28s
test / unit (pull_request) Successful in 33s
test / integration (pull_request) Failing after 43s

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 <noreply@anthropic.com>
This commit is contained in:
2026-06-04 12:03:57 -04:00
parent a5d08bd64e
commit 24c302ae0f
+5 -5
View File
@@ -1,11 +1,11 @@
name: Lint and Type Check name: lint
on: on:
push: push:
paths: paths:
- '**.py' - "**.py"
- '.pylintrc' - ".pylintrc"
- '.gitea/workflows/lint.yml' - ".gitea/workflows/lint.yml"
jobs: jobs:
lint: lint:
@@ -16,7 +16,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.12' python-version: "3.12"
- name: Install dev dependencies - name: Install dev dependencies
run: | run: |