Skip to content

sample PR

sample PR #3

Workflow file for this run

# Various unix builds
name: unix CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
defaults:
run:
shell: bash {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Mac install dependencies
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install autoconf automake libtool
- name: Compile
run: |
autoreconf -i
./configure CC="gcc" CFLAGS="-g -O3 -Wall -Werror"
make -j32
- name: Check
run: |
make check || cat tests/test-suite.log