Remove headers from querystats tracking #773
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: test | |
| on: | |
| push: {} | |
| pull_request: {} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| package: ["plain", "plain-worker", "plain-flags", "plain-sessions", "plain-admin", "plain-oauth", "plain-models", "plain-api"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v2 | |
| - name: Set up Python | |
| run: uv python install ${{ matrix.python-version }} | |
| - working-directory: ${{ matrix.package }}/tests | |
| run: uv run --isolated pytest | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v2 | |
| - name: Set up Python | |
| run: uv python install | |
| - working-directory: plain-code | |
| run: uv sync | |
| - working-directory: plain-code | |
| run: uv run plain-code check .. |