lint some files #425
Workflow file for this run
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: Run PAT tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [ opened, synchronize, reopened, ready_for_review ] | |
| push: | |
| branches: | |
| - master | |
| - v* | |
| jobs: | |
| sdc11073_provider_v2: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, macos-14, windows-latest ] | |
| tls_enable: [ true, false ] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Run tests with tls enabled | |
| if: ${{ matrix.tls_enable }} | |
| run: uv run -m pat.run --tls | |
| timeout-minutes: 2 | |
| - name: Run tests with tls disabled | |
| if: ${{ !matrix.tls_enable }} | |
| run: uv run -m pat.run | |
| timeout-minutes: 2 |