build: fixing creation of freathreaded geometry module on publish #936
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: Tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "master" | |
| - "devel" | |
| - "main" | |
| - "feat/*" | |
| - "pixi-2" | |
| paths: | |
| - "**.py" | |
| - "**.c" | |
| - "**.h" | |
| - "**.yaml" | |
| - "**.yml" | |
| - "**.toml" | |
| - "**/data/**" | |
| - ".github/constraints.txt" | |
| - "!adhoc/**" | |
| - "!tools/**" | |
| pull_request: | |
| branches: | |
| - "master" | |
| - "devel" | |
| - "main" | |
| paths: | |
| - "**.py" | |
| - "**.c" | |
| - "**.h" | |
| - "**.yaml" | |
| - "**.yml" | |
| - "**.toml" | |
| - "!adhoc/**" | |
| - "!tools/**" | |
| # permissions: | |
| # contents: read # Minimal required permissions | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/master' || github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| DEFAULT_PYTHON: "3.14" | |
| UV_LINK_MODE: "copy" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| if: | | |
| !contains(github.event.head_commit.message, '[skip_ci]') | |
| env: | |
| no_proxy: "pypi.org,files.pythonhosted.org,github.com,api.github.com" # to avoid SOCKS issue on python3.14 | |
| steps: | |
| - name: ✅ Check out the repository | |
| uses: actions/checkout@v6 | |
| - uses: prefix-dev/setup-pixi@v0.9.6 | |
| with: | |
| pixi-version: v0.71.0 | |
| cache: true | |
| cache-write: ${{ github.event_name == 'push' && github.ref_name == 'devel' }} | |
| # auth-host: prefix.dev | |
| # auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | |
| - name: Run pre commit checks | |
| run: | | |
| pixi run pre-commit | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ✅ Check out the repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| submodules: 'true' | |
| - uses: prefix-dev/setup-pixi@v0.9.6 | |
| with: | |
| pixi-version: v0.71.1 | |
| cache: true | |
| cache-write: ${{ github.event_name == 'push' && github.ref_name == 'devel' }} | |
| environments: docs | |
| # auth-host: prefix.dev | |
| # auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | |
| # cache-dependency-glob: | | |
| # **/uv.lock | |
| # **/pyproject.toml | |
| - name: 🐍 Install the project | |
| run: | | |
| pixi install | |
| - name: 📦 Build documentation | |
| run: | | |
| pixi run docs-build | |
| tests: | |
| name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| environment: [ 'py312', 'py313', 'py314' ] | |
| include: | |
| - os: windows-latest | |
| environment: 'py313' # Windows runner is too slow | |
| steps: | |
| - name: ✅ Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| submodules: 'true' | |
| - uses: prefix-dev/setup-pixi@v0.9.6 | |
| with: | |
| pixi-version: v0.71.1 | |
| cache: true | |
| cache-write: ${{ github.event_name == 'push' && github.ref_name == 'devel' }} | |
| environments: ${{ matrix.environment }} | |
| - name: ✅ Run tests | |
| run: | | |
| pixi shell -e ${{ matrix.environment }} | |
| pytest --cov --cov-report term-missing:skip-covered --cov-report xml | |
| - name: 📤 Upload coverage report | |
| uses: codecov/codecov-action@v7 | |
| with: | |
| files: coverage.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |