Skip to content

Commit

Permalink
feat: update makefile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jgabaut committed Sep 8, 2023
1 parent cdd5e96 commit 56919e8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
branches: [ "master" "devel" ]

jobs:
build:
Expand All @@ -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

0 comments on commit 56919e8

Please sign in to comment.