mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-22 22:30:45 -07:00
* docs(M03): seed M03 plan and toolcalls Made-with: Cursor * ci: add repository guardrail, update CONTRIBUTING workflow Made-with: Cursor * M03: Test architecture (smoke/quality/nightly) - Move tests to test/smoke/, scaffold test/quality and test/nightly - Add pytest.ini with smoke/quality/nightly markers - Split CI: run_smoke_tests (PR), run_quality_tests (push main), run_nightly_tests (schedule) - Remove run_tests.yaml - Add prevent_upstream_push.sh pre-push hook template - Update CONTRIBUTING.md with hook install and test tier docs - Add repo and base-branch guardrails to workflows Made-with: Cursor * ci: remove obsolete warns_merge_master workflow (Serena uses main) Made-with: Cursor * fix: add base_url to pytest.ini for pytest-base-url plugin Made-with: Cursor * docs(M03): ledger, run1, audit, summary Made-with: Cursor * docs(M03): ledger commit 4ce5cde9 Made-with: Cursor
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
name: Linter
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint-python:
|
|
name: ruff
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Verify repository
|
|
run: |
|
|
if [ "$GITHUB_REPOSITORY" != "m-cahill/serena" ]; then
|
|
echo "::error::Serena CI must run only inside m-cahill/serena, not $GITHUB_REPOSITORY"
|
|
exit 1
|
|
fi
|
|
- name: Checkout Code
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
|
|
with:
|
|
python-version: 3.11
|
|
# NB: there's no cache: pip here since we're not installing anything
|
|
# from the requirements.txt file(s) in the repository; it's faster
|
|
# not to have GHA download an (at the time of writing) 4 GB cache
|
|
# of PyTorch and other dependencies.
|
|
- name: Install Ruff
|
|
run: pip install ruff==0.3.3
|
|
- name: Run Ruff
|
|
run: ruff .
|
|
lint-js:
|
|
name: eslint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Verify repository
|
|
run: |
|
|
if [ "$GITHUB_REPOSITORY" != "m-cahill/serena" ]; then
|
|
echo "::error::Serena CI must run only inside m-cahill/serena, not $GITHUB_REPOSITORY"
|
|
exit 1
|
|
fi
|
|
- name: Checkout Code
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
|
with:
|
|
node-version: 18
|
|
- run: npm i --ci
|
|
- run: npm run lint
|