Skip to content

Fix platform-specific Makefile settings #29

Fix platform-specific Makefile settings

Fix platform-specific Makefile settings #29

Workflow file for this run

name: 🧪 Testing
on: push
env:
CC: gcc
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- name: install make
run: choco install -y make
if: runner.os == 'Windows'
- name: make
run: make
- name: make check
run: make check
- name: make install
run: make install