Skip to content

Use pip as a solver #61

Use pip as a solver

Use pip as a solver #61

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- "*"
pull_request:
paths:
- ".github/workflows/test.yml"
- "conda_pip/**"
- "tests/**"
- "pyproject.toml"
- "pixi.toml"
concurrency:
# Concurrency group that uses the workflow name and PR number if available
# or commit SHA as a fallback. If a new build is triggered under that
# concurrency group while a previous build is running it will be canceled.
# Repeated pushes to a PR will cancel all previous builds, while multiple
# merges to main will not cancel.
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
tests:
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows]
python-version: ["3.8", "3.9", "3.10", "3.11"]
include:
- os: macos
python-version: "3.10"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: prefix-dev/[email protected]
with:
cache: false
run-install: false
- name: Setup project
run: |
pixi add "python=${{ matrix.python-version }}.*=*cpython*"
pixi run dev
pixi run conda info
- name: Patch history file (temporary)
run: echo "//fix" > .pixi/envs/default/conda-meta/history
- name: Run tests
run: pixi run test --basetemp=${{ runner.os == 'Windows' && 'D:\\temp' || runner.temp }}
- name: Build recipe
run: pixi run build