Skip to content

Refactor: Remove error handling and tidy up code 🧹 #27

Refactor: Remove error handling and tidy up code 🧹

Refactor: Remove error handling and tidy up code 🧹 #27

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