summaryrefslogtreecommitdiff
path: root/.github/workflows/make.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/make.yml')
-rw-r--r--.github/workflows/make.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml
new file mode 100644
index 0000000..8722f16
--- /dev/null
+++ b/.github/workflows/make.yml
@@ -0,0 +1,17 @@
+name: check makefile
+
+on:
+ push:
+ branches: '*'
+ pull_request:
+ branches: '*'
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: checkout repo
+ uses: actions/checkout@main
+
+ - name: build application
+ run: make all