chore(deps): bump astral-sh/setup-uv from 9.0.0 to 10.0.1 in the actions group #628
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: Conda | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [ubuntu-latest] | |
| python-version: ["3.10", "3.13"] | |
| runs-on: ${{ matrix.platform }} | |
| # The setup-miniconda action needs this to activate miniconda | |
| defaults: | |
| run: | |
| shell: "bash -l {0}" | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Get conda | |
| uses: conda-incubator/setup-miniconda@v4.0.1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| channels: conda-forge | |
| # conda-build is a conda plugin, so it must live in the base env next to | |
| # conda itself (setup-miniconda activates a separate "test" env). | |
| - name: Prepare | |
| run: conda install -n base conda-build | |
| - name: Build | |
| run: conda build conda.recipe --python=${{ matrix.python-version }} | |
| - name: Install | |
| run: conda install --use-local scikit_build_example pytest | |
| - name: Test | |
| run: pytest tests |