Skip to content

Commit

Permalink
Add makefile test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonVanAssche committed Mar 27, 2023
1 parent 1bb1688 commit 527b94d
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Test Makefile

on:
push:
paths:
- "BSDmakefile"
- "GNUmakefile"
pull_request:
paths:
- "BSDmakefile"
- "GNUmakefile"

jobs:
test-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Test installation
run: |
make install
- name: Test updating
run: |
make update
- name: Test uninstall
run: |
make install
make uninstall
test-macos:
runs-on: macos-12
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Test installation
run: |
make install
- name: Test updating
run: |
make update
- name: Test uninstall
run: |
make install
make uninstall

0 comments on commit 527b94d

Please sign in to comment.