diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 049f33d..ca9dc12 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -4,7 +4,7 @@ on: push: branches: [ "master" ] pull_request: - branches: [ "master" ] + branches: [ "master" "devel" ] jobs: build: @@ -13,5 +13,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Test make + - name: Run aclocal + run: aclocal + - name: Run autoconf + run: autoconf + - name: Run automake --add-missing + run: automake --add-missing + - name: Run ./configure + run: ./configure + - name: Run make run: make