summaryrefslogtreecommitdiff
path: root/.github/workflows/make.yml
blob: 8722f16a0f2144d73bfb85440873e89c374cb513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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