Skip to content

Don't test Py3.8 on Github Actions #54

Don't test Py3.8 on Github Actions

Don't test Py3.8 on Github Actions #54

Workflow file for this run

name: CI-windows
on:
- push
- pull_request
jobs:
tests:
runs-on: windows-2022
defaults:
run:
shell: bash -l {0}
env:
FLUIDFFT_TRANSONIC_BACKEND: "python"
FLUIDDYN_NO_XSIMD: true
FLUIDFFT_NO_CARCH: true
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: .github/environment-windows.yml
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: test
use-mamba: true
- name: Install
run: |
cp .github/pythranrc-windows $HOME/.pythranrc
pip install -e . -v
- name: Tests
run: |
pytest -v