build.yml 413 B

1234567891011121314151617181920
  1. name: Build libmodbus
  2. on:
  3. push:
  4. branches: ["master"]
  5. pull_request:
  6. branches: ["master"]
  7. jobs:
  8. build:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v3
  12. - name: configure
  13. run: ./autogen.sh && ./configure
  14. - name: make
  15. run: make
  16. - name: make distcheck
  17. run: make distcheck