Skip to content

Commit

Permalink
Add CI to test examples through Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedElashri committed Sep 7, 2023
1 parent 9f68703 commit e99f01f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Makefile Examples CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup C/C++ Compiler
uses: rlalik/[email protected]
with:
compiler: latest

- name: Build
run: make all

0 comments on commit e99f01f

Please sign in to comment.