Skip to content

Bump actions/upload-artifact from 5 to 6 #73

Bump actions/upload-artifact from 5 to 6

Bump actions/upload-artifact from 5 to 6 #73

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
run:
name: ${{ matrix.pixi-environment }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
pixi-environment:
- py310-base
- py310-xarray
- py311-base
- py311-xarray
- py312-base
- py312-xarray
steps:
- uses: actions/checkout@v6
- name: Set up Pixi
uses: prefix-dev/setup-pixi@v0.9.3
with:
cache: true
environments: ${{ matrix.pixi-environment }}
- name: Run tests
run: pixi run --environment ${{ matrix.pixi-environment }} cov-xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}