[DOP-36596] Prepare for release #3599
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: Code analysis | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| pull_request: | |
| branches-ignore: | |
| - master | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| DEFAULT_PYTHON: '3.13' | |
| jobs: | |
| linters: | |
| name: Linters | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| activate-environment: 'true' | |
| enable-cache: 'false' | |
| # astral-sh/setup-uv cannot restore multiple keys | |
| - name: Cache uv | |
| uses: actions/cache/restore@v5 | |
| with: | |
| path: ~/.cache/uv | |
| key: ${{ runner.os }}-python${{ env.DEFAULT_PYTHON }}-pydantic2-spark3.5-${{ hashFiles('uv.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-python${{ env.DEFAULT_PYTHON }}-pydantic2-spark3.5-${{ hashFiles('uv.lock') }} | |
| ${{ runner.os }}-python${{ env.DEFAULT_PYTHON }}-pydantic2-spark3.5- | |
| ${{ runner.os }}-python${{ env.DEFAULT_PYTHON }}-pydantic2- | |
| ${{ runner.os }}-python${{ env.DEFAULT_PYTHON }}- | |
| - name: Install dependencies | |
| run: | | |
| uv sync --extra files --group test-spark-3.5 --group test-pydantic-2 --group dev | |
| # Set the `CODEQL-PYTHON` environment variable to the Python executable | |
| # that includes the dependencies | |
| echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV | |
| - name: Run mypy | |
| run: python3 -m mypy onetl | |
| codeql: | |
| name: CodeQL | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: python | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: /language:python |