Skip to content

Weekly Platform Tests #8

Weekly Platform Tests

Weekly Platform Tests #8

name: Weekly Platform Tests
on:
workflow_dispatch:
schedule:
- cron: "0 2 * * 1"
jobs:
test:
name: ${{ matrix.package }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
package:
- essreduce
- essimaging
- essnmx
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
run: pixi run -e ${{ matrix.package }} test ${{ matrix.package }}