Skip to content

start work on generating windows self-test; start w/conda #1

start work on generating windows self-test; start w/conda

start work on generating windows self-test; start w/conda #1

Workflow file for this run

name: run self-tests on Windows
on:
# Runs on pushes targeting the default branch
push:
branches-ignore:
- master
# branches: ['develop']
# pull_request:
# branches: ['main']
workflow_dispatch: # Allows running this workflow manually
# Default to bash
defaults:
run:
shell: bash
jobs:
build:
strategy:
fail-fast: false
matrix:
# env: ['py313']
env: ['py310', 'py311', 'py312', 'py313']
runs-on: 'windows-latest'
steps:
- name: Get conda
#uses: conda-incubator/[email protected]
uses: conda-incubator/setup-miniconda@030178870c779d9e5e1b4e563269f3aa69b04081 # v3.0.3 using hash for security
with:
activate-environment: build
miniforge-version: latest
python-version: ${{ matrix.env }}
# configure conda
- name: config python
if [ ${{ matrix.env }} == 'py313' ]; then

Check failure on line 39 in .github/workflows/win_test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/win_test.yml

Invalid workflow file

You have an error in your yaml syntax on line 39
npver=2.2
fi
run: conda install numpy={$npver} scipy requests pytest