12345678910111213141516171819202122232425262728 |
- name: macOS Build Test
- on:
- push:
- branches: [ '*' ]
- pull_request:
- branches: [ '*' ]
- jobs:
- build:
- runs-on: macos-latest
- steps:
- - uses: actions/checkout@v2
- - name: brew
- run: brew install automake libtool
- - name: autogen
- run: ./autogen.sh
- - name: configure
- run: ./configure
- - name: make
- run: make
- - name: make check
- run: make check
- - name: make distcheck
- run: make distcheck
|