Add debugging info for Windows install #6
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: 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 | |