This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
Bump version to 0.3.0 #233
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: 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 |