Spaces:
Running on Zero
Running on Zero
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test-quality: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools | |
| python -m pip install -r requirements.txt -r requirements-dev.txt | |
| - name: Tests, coverage, lint, type, security | |
| shell: pwsh | |
| run: .\scripts\run_quality.ps1 | |