Skip to content

Commit

Permalink
Add Makefile-driven workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mattooca committed Jan 7, 2025
1 parent b656041 commit e50bb38
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Makefile CI

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

- name: Build
run: make

- name: Run check
run: make check

0 comments on commit e50bb38

Please sign in to comment.