diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-06-04 14:11:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 14:11:32 +0200 |
commit | 1c8761901b26c0be4d61f3aed5ec0495a558a0e7 (patch) | |
tree | be3177edeaf93cbd57e49f7067418bc8ef0dfdd3 /.github | |
parent | 663b99a971f8dd7f7776fe3647f24ce728b3d434 (diff) |
Refactor using package `com.clp.project` (#1)
Co-authored-by: geno <gabriele.genovese2@studio.unibo.it>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/make.yml | 17 |
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 |