Add github workflow for C and C++ version

It builds the C and C++ version at each push or merge, makes it easier to test the code

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
pull/118/head
Bensuperpc 4 years ago
parent 4d13c303dc
commit 24bebbf02b

@ -0,0 +1,27 @@
name: QR-Code-generator
on:
push:
branches:
- '*'
paths-ignore:
- '**/README.md'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
image:
name: build
runs-on: ubuntu-latest
steps:
- name: "Checkout Code"
uses: actions/checkout@v2
with:
submodules: 'recursive'
fetch-depth: 0
- name: "C"
run: make -C c all
- name: "C++"
run: make -C cpp all
Loading…
Cancel
Save