Skip to content

Commit

Permalink
Add GitHub workflow for building examples
Browse files Browse the repository at this point in the history
  • Loading branch information
antevir committed Feb 13, 2024
1 parent 35b696b commit 72ffb49
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ceedling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Examples

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
run_tests:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build All
run: |
cmake -S . -B build
cd build
make all

0 comments on commit 72ffb49

Please sign in to comment.