chore: update copyright year in LICENSE file to 2025 #98
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: Python check | |
| on: | |
| push: | |
| branches: [ azure_openai ] | |
| pull_request: | |
| branches: [ azure_openai ] | |
| jobs: | |
| test_package: | |
| name: Test ${{ matrix.os }} Python ${{ matrix.python_version }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-22.04", "ubuntu-24.04", "windows-latest"] | |
| python_version: ["3.11", "3.12"] | |
| env: | |
| UV_SYSTEM_PYTHON: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| architecture: x64 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| version: "0.4.20" | |
| cache-dependency-glob: "requirements**.txt" | |
| - name: Install dependencies | |
| run: uv pip install -r requirements-dev.txt | |
| - name: Lint with ruff | |
| run: python3 -m ruff check . | |
| - name: Format code with black | |
| run: black . |