Improved watch delete (#3510) #8873
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ChangeDetection.io App Test | |
# Triggers the workflow on push or pull request events | |
on: [push, pull_request] | |
jobs: | |
lint-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Lint with Ruff | |
run: | | |
pip install ruff | |
# Check for syntax errors and undefined names | |
ruff check . --select E9,F63,F7,F82 | |
# Complete check with errors treated as warnings | |
ruff check . --exit-zero | |
- name: Validate OpenAPI spec | |
run: | | |
pip install openapi-spec-validator | |
python3 -c "from openapi_spec_validator import validate_spec; import yaml; validate_spec(yaml.safe_load(open('docs/api-spec.yaml')))" | |
test-application-3-10: | |
needs: lint-code | |
uses: ./.github/workflows/test-stack-reusable-workflow.yml | |
with: | |
python-version: '3.10' | |
test-application-3-11: | |
needs: lint-code | |
uses: ./.github/workflows/test-stack-reusable-workflow.yml | |
with: | |
python-version: '3.11' | |
test-application-3-12: | |
needs: lint-code | |
uses: ./.github/workflows/test-stack-reusable-workflow.yml | |
with: | |
python-version: '3.12' | |
skip-pypuppeteer: true | |
test-application-3-13: | |
needs: lint-code | |
uses: ./.github/workflows/test-stack-reusable-workflow.yml | |
with: | |
python-version: '3.13' | |
skip-pypuppeteer: true |