add github action to build with apt

This commit is contained in:
Jeff Huijsmans 2023-04-06 10:49:25 +02:00
parent 56db76d1ab
commit f4b5ea7ea8
1 changed files with 13 additions and 0 deletions

13
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Build the project
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build project with APT
run: './buildScripts/buildInstallLocallyApt'