Prepare 0.7.1 #96
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-windows | |
on: | |
- push | |
- pull_request | |
jobs: | |
tests: | |
runs-on: windows-2022 | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.26.1 | |
cache: false | |
- name: Tests | |
run: | | |
pixi run install-editable | |
pixi run pytest tests | |
pixi run mpirun -np 2 pytest tests | |
echo "TRANSONIC_BACKEND=python" >> $GITHUB_ENV | |
pixi run pytest tests | |
echo "TRANSONIC_BACKEND=numba" >> $GITHUB_ENV | |
pixi run pytest tests |