mirror of
https://github.com/mellowcandle/bitwise.git
synced 2025-02-23 07:54:33 +01:00
27 lines
515 B
YAML
27 lines
515 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
env:
|
|
LDFLAGS: "-L/usr/local/opt/readline/lib"
|
|
CPPFLAGS: "-I/usr/local/opt/readline/include"
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install lib-cunit
|
|
run: brew install readline cunit autoconf automake
|
|
- name: Bootstrap
|
|
run: ./bootstrap.sh
|
|
- name: configure
|
|
run: ./configure
|
|
- name: make check
|
|
run: make check
|
|
|