Post 6.7.1 fixes #17
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: 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 CC=gcc | |
- name: Run check | |
run: | | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
# make check PYTHON=python PYTHONPATH=${PYTHONPATH}:$PWD | |
echo "Skip checks on Windows for now" | |
else | |
make check PYTHON=python PYTHONPATH=$PYTHONPATH:$PWD | |
fi | |
shell: bash | |