Skip to content

Add debugging info for Windows install #6

Add debugging info for Windows install

Add debugging info for Windows install #6

Workflow file for this run

name: FUDGE make + make check
on:
push:
branches: [ "master", "ci_dev" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel numpy h5py matplotlib
- name: Build
run: make PYTHON=python
- name: Run check
run: make check PYTHON=python PYTHONPATH=$PYTHONPATH:$PWD