fix: dynamically detect Windows SDK tools for GitHub Actions compatibility #1980
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: Codebase validation | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "README.md" | |
| schedule: | |
| - cron: "0 8 * * 1" # Each monday 8 AM UTC | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pr-check: | |
| name: Check Python | |
| uses: ./.github/workflows/check-python.yaml | |
| pr-build: | |
| name: Build & Test Python | |
| needs: pr-check | |
| uses: ./.github/workflows/build-python.yaml | |
| pr-binaries-build: | |
| name: Build & Test Binaries | |
| needs: pr-check | |
| uses: ./.github/workflows/build-binaries.yaml | |
| with: | |
| production_release: "false" | |
| python_version: "3.12" | |
| secrets: inherit |