Skip to content

chore(deps): update dependency prefix-dev/pixi to v0.72.1 (#258) #619

chore(deps): update dependency prefix-dev/pixi to v0.72.1 (#258)

chore(deps): update dependency prefix-dev/pixi to v0.72.1 (#258) #619

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
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:
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15-intel, macos-26, windows-2025]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
env:
# renovate: datasource=github-releases depName=prefix-dev/pixi
PIXI_VERSION: v0.72.1
with:
pixi-version: ${{ env.PIXI_VERSION }}
- name: Run tests
run: pixi run test
- name: Archive coverage report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: ci-artifacts-${{ matrix.os }}
path: htmlcov/**
retention-days: 5