We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a93c1e commit 92fa431Copy full SHA for 92fa431
.github/workflows/cibuild.yml
@@ -11,16 +11,21 @@ jobs:
11
python-version: ["3.11", "3.12"]
12
fail-fast: false
13
steps:
14
- - uses: actions/checkout@v1
+ - name: Check out code
15
+ uses: actions/checkout@v1
16
- name: Set up Python ${{ matrix.python-version }}
17
uses: actions/setup-python@v1
18
with:
19
python-version: ${{ matrix.python-version }}
20
+ - name: Set up pixi package manager
21
+ uses: prefix-dev/setup-pixi@v0.8.10
22
+ with:
23
+ pixi-version: v0.48.2
24
+ cache: true
25
- name: Install
26
run: |
27
curl -fsSL https://pixi.sh/install.sh | sh
28
source $HOME/.bashrc
- cat $HOME/.bashrc
29
which pixi
30
pixi install
31
pixi install -e test
0 commit comments