Skip to content

Commit 92fa431

Browse files
committed
Troubleshooting CI
1 parent 2a93c1e commit 92fa431

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/cibuild.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,21 @@ jobs:
1111
python-version: ["3.11", "3.12"]
1212
fail-fast: false
1313
steps:
14-
- uses: actions/checkout@v1
14+
- name: Check out code
15+
uses: actions/checkout@v1
1516
- name: Set up Python ${{ matrix.python-version }}
1617
uses: actions/setup-python@v1
1718
with:
1819
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
1925
- name: Install
2026
run: |
2127
curl -fsSL https://pixi.sh/install.sh | sh
2228
source $HOME/.bashrc
23-
cat $HOME/.bashrc
2429
which pixi
2530
pixi install
2631
pixi install -e test

0 commit comments

Comments
 (0)