Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/run-pixi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test pixi setup 📎

on:
push:

env:
NEOPDF_DATA_PATH: ${{ github.workspace }}/neopdf-data
LHAPDF_DATA_PATH: ${{ github.workspace }}/neopdf-data

jobs:
pixi:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Get data
uses: ./.github/actions/cache-data

- uses: prefix-dev/setup-pixi@v0.8.3
with:
pixi-version: latest
cache: true
locked: false

- name: Install Python API
run: pixi run install-pyapi

- name: Test Rust
run: pixi run test-rust
Loading
Loading