Bump actions/cache from 5 to 6 #18
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: Python Wrapper Windows | |
| on: | |
| pull_request: | |
| jobs: | |
| windows-install: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.13", "3.14"] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up MSVC environment | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| - name: Upgrade packaging tools | |
| run: python -m pip install --upgrade pip setuptools wheel | |
| - name: Show CMake version | |
| run: cmake --version | |
| - name: Install package from source | |
| run: python -m pip install . | |
| - name: Smoke test wrapper import | |
| run: python -c "import cmsisdsp, cmsisdsp_basic; print(cmsisdsp.__version__)" |