Skip to content

Commit

Permalink
Add pixi-ci.yml job
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Mar 2, 2024
1 parent 6892ba5 commit e328252
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pixi-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI Workflow

on:
pull_request:

jobs:
build-with-pixi:
name: '[pixi:${{ matrix.os }}]'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
build_type: [Release]
os: [ubuntu-22.04, macos-latest, windows-2019]

steps:
- uses: actions/checkout@v4

- name: Print used environment
shell: bash
run: |
env
- uses: prefix-dev/setup-pixi@v0.5.1

- name: Run the tests
shell: bash -l {0}
run: pixi run test

0 comments on commit e328252

Please sign in to comment.