Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Bump version to 0.3.0 #233

Bump version to 0.3.0

Bump version to 0.3.0 #233

Workflow file for this run

name: Unit Testing
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'README.md'
jobs:
unit-test:
continue-on-error: true
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, ubuntu-24.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install GNU Getopt on macOS
if: ${{ matrix.os == 'macos-latest' }}
run: brew install gnu-getopt
- name: configure
run: ./configure
- name: build
run: make
- name: check
run: make check