macos-check.yml 462 B

12345678910111213141516171819202122232425262728
  1. name: macOS Build Test
  2. on:
  3. push:
  4. branches: [ '*' ]
  5. pull_request:
  6. branches: [ '*' ]
  7. jobs:
  8. build:
  9. runs-on: macos-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: brew
  13. run: brew install automake libtool
  14. - name: autogen
  15. run: ./autogen.sh
  16. - name: configure
  17. run: ./configure
  18. - name: make
  19. run: make
  20. - name: make check
  21. run: make check
  22. - name: make distcheck
  23. run: make distcheck