diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index ea4db6789..d129ddcf8 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -3,8 +3,8 @@ name: C/C++ CI on: [push] jobs: - build: - + Ubuntu: + name: run Ubuntu runs-on: ubuntu-latest steps: @@ -17,3 +17,20 @@ jobs: run: make check - name: make distcheck run: make distcheck + + macOS: + name: run macOS + runs-on: macos-latest + + steps: + - uses: actions/checkout@v1 + - name: bootstrap + run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" && brew install autoconf automake libtool pkg-config + - name: configure + run: ./autogen.sh + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck