Commit 88af31cb54ad2b3968c65d09d78733693119e1a0
1 parent
f7461b99
Add autogen.sh call
Showing
1 changed file
with
16 additions
and
17 deletions
.github/workflows/c-cpp.yml renamed to .github/workflows/build.yml
| 1 | name: Build libmodbus | 1 | name: Build libmodbus |
| 2 | 2 | ||
| 3 | on: | 3 | on: |
| 4 | - push: | ||
| 5 | - branches: [ "master" ] | ||
| 6 | - pull_request: | ||
| 7 | - branches: [ "master" ] | 4 | + push: |
| 5 | + branches: ["master"] | ||
| 6 | + pull_request: | ||
| 7 | + branches: ["master"] | ||
| 8 | 8 | ||
| 9 | jobs: | 9 | jobs: |
| 10 | - build: | 10 | + build: |
| 11 | + runs-on: ubuntu-latest | ||
| 11 | 12 | ||
| 12 | - runs-on: ubuntu-latest | ||
| 13 | - | ||
| 14 | - steps: | ||
| 15 | - - uses: actions/checkout@v3 | ||
| 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 | 13 | + steps: |
| 14 | + - uses: actions/checkout@v3 | ||
| 15 | + - name: configure | ||
| 16 | + run: ./autogen.sh && ./configure | ||
| 17 | + - name: make | ||
| 18 | + run: make | ||
| 19 | + - name: make check | ||
| 20 | + run: make check | ||
| 21 | + - name: make distcheck | ||
| 22 | + run: make distcheck |